next.config.mjs 213 B

12345678910
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. output: "standalone",
  4. env: {
  5. JWT_SECRET: process.env.JWT_SECRET,
  6. MONGODB_URI: process.env.MONGODB_URI,
  7. },
  8. };
  9. export default nextConfig;