next.config.mjs 173 B

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