11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2024-11-01',
|
|
devtools: { enabled: true },
|
|
runtimeConfig: {
|
|
public: {
|
|
apiHost: 'http://localhost:5291',
|
|
}
|
|
}
|
|
})
|