mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 13:28:57 +00:00
17 lines
339 B
TypeScript
17 lines
339 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: "2025-07-15",
|
|
devtools: { enabled: true },
|
|
nitro: {
|
|
prerender: {
|
|
crawlLinks: true,
|
|
routes: ["/"],
|
|
},
|
|
},
|
|
runtimeConfig: {
|
|
public: {
|
|
appUrl: process.env.APP_URL || "something",
|
|
},
|
|
},
|
|
});
|