export default defineNitroPlugin(() => { const config = useRuntimeConfig() if (!config.jwtSecret) { console.error('FATAL: JWT_SECRET environment variable is not set. Server cannot start without it.') console.error('Set JWT_SECRET in your .env file or environment variables.') process.exit(1) } })