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