Files
Dungeons-Ground/apps/web/server/plugins/validate-runtime-config.ts
pavel444-byte 1774496cf9
Some checks failed
CI / validate (push) Failing after 14m50s
The first 2 weeks is ended.
2026-08-14 10:48:54 +05:00

8 lines
308 B
TypeScript

export default defineNitroPlugin(() => {
// Keep builds and unit tests credential-free, but fail before serving traffic
// when a production Nitro process starts with an incomplete Supabase setup.
if (process.env.NODE_ENV === 'production') {
assertRequiredSupabaseConfig(useRuntimeConfig())
}
})