Initial commit

This commit is contained in:
2024-12-29 12:11:11 +01:00
parent 6e1e00d048
commit 856dfbd119
9 changed files with 105 additions and 1 deletions
+15 -1
View File
@@ -1,5 +1,19 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-11-01',
devtools: { enabled: true }
ssr: true,
devtools: { enabled: true },
runtimeConfig: {
public: {
endpoint: "https://playtest.legonzaur.fr/api", // can be overridden by NUXT_PUBLIC_ENDPOINT environment variable
discordLoginEndpoint: "",
devMode: false,
},
},
nitro: {
prerender: {
routes: ["/login", "/"],
crawlLinks: true,
},
},
})