Load the contact details for push notifications from the NUXT_VAPID_SUBJECT environment variable.
14 lines
317 B
TypeScript
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: "",
|
|
}
|
|
}
|
|
})
|