next.config.js 227 B

123456789101112
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. output: "standalone",
  4. env: {
  5. MONGODB_URI: process.env.MONGODB_URI,
  6. },
  7. images: {
  8. domains: ["match.dzhhzy.com"],
  9. },
  10. };
  11. module.exports = nextConfig;