mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-19 13:58:56 +00:00
12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
ssr: false,
|
|
runtimeConfig: {
|
|
public: {
|
|
testEnvVar: process.env.TEST_ENV_VAR || 'default-value',
|
|
},
|
|
},
|
|
})
|