make admin cookie name variable
All checks were successful
deploy / build-and-deploy (/testvaro, /opt/website-test, website-test) (push) Successful in 24s
deploy / build-and-deploy (/varo, /opt/website, website) (push) Successful in 23s

This commit is contained in:
2025-06-09 15:45:21 +02:00
parent eb45e03f16
commit b8ed48a68b
3 changed files with 8 additions and 6 deletions

View File

@ -36,6 +36,7 @@ export default defineConfig({
ADMIN_USER: envField.string({ context: 'server', access: 'secret', optional: true }),
ADMIN_PASSWORD: envField.string({ context: 'server', access: 'secret', optional: true }),
ADMIN_COOKIE: envField.string({ context: 'server', access: 'secret', default: 'muelleel' }),
START_DATE: envField.string({ context: 'server', access: 'secret', default: '1970-01-01' }),