owltide/nuxt.config.ts
Hornwitser 4444daaca9
All checks were successful
/ build (push) Successful in 1m8s
/ deploy (push) Successful in 16s
Load secrets from files
Putting secrets into environment variables is problematic due to them
being inherited by sub-processes, the ease as which these can be
leaked in logs, and the lack of support for loading secrets into
environment variables by systems such as systemd and docker.

Change the loading of secrets to be done by loading the content of a
file specified by an environment variable.
2025-05-20 00:43:29 +02:00

14 lines
325 B
TypeScript

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