owltide/nuxt.config.ts
Hornwitser a16921f264 Read vapid subject from the environment
Load the contact details for push notifications from the
NUXT_VAPID_SUBJECT environment variable.
2025-05-20 00:25:28 +02:00

14 lines
317 B
TypeScript

// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-11-01',
devtools: { enabled: true },
runtimeConfig: {
cookieSecretKey: "",
vapidSubject: "",
vapidPrivateKey: "",
public: {
defaultTimezone: "Europe/Oslo",
vapidPublicKey: "",
}
}
})