2025-03-01 16:52:23 +01:00
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
|
|
export default defineNuxtConfig({
|
2025-03-01 17:06:41 +01:00
|
|
|
compatibilityDate: '2024-11-01',
|
2025-03-05 15:36:50 +01:00
|
|
|
devtools: { enabled: true },
|
|
|
|
runtimeConfig: {
|
2025-05-20 00:43:29 +02:00
|
|
|
cookieSecretKeyFile: "",
|
2025-05-20 00:25:28 +02:00
|
|
|
vapidSubject: "",
|
2025-05-20 00:43:29 +02:00
|
|
|
vapidPrivateKeyFile: "",
|
2025-03-05 15:36:50 +01:00
|
|
|
public: {
|
2025-03-09 15:53:51 +01:00
|
|
|
defaultTimezone: "Europe/Oslo",
|
2025-03-05 15:36:50 +01:00
|
|
|
vapidPublicKey: "",
|
|
|
|
}
|
2025-05-24 17:53:33 +02:00
|
|
|
},
|
|
|
|
modules: [
|
|
|
|
"@pinia/nuxt",
|
|
|
|
],
|
2025-03-01 16:52:23 +01:00
|
|
|
})
|