mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 13:28:57 +00:00
11 lines
228 B
TypeScript
11 lines
228 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
ssr: true,
|
|
devtools: { enabled: true },
|
|
runtimeConfig: {
|
|
public: {
|
|
appUrl: process.env.APP_URL || 'something'
|
|
}
|
|
}
|
|
})
|