/** @type {import('next').NextConfig} */
const nextConfig = {
  output: "standalone",
  env: {
    MONGODB_URI: process.env.MONGODB_URI,
  },
  images: {
    domains: ["match.dzhhzy.com"],
  },
};

module.exports = nextConfig;