10 lines
207 B
TypeScript
10 lines
207 B
TypeScript
export default defineNuxtConfig({
|
|
devtools: { enabled: true },
|
|
modules: ['@nuxtjs/tailwindcss'],
|
|
runtimeConfig: {
|
|
public: {
|
|
apiBaseUrl: '', // set via NUXT_PUBLIC_API_BASE_URL
|
|
},
|
|
},
|
|
})
|