web/next.config.mjs

20 lines
398 B
JavaScript
Raw Normal View History

2024-05-27 01:22:39 +03:30
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false, // React Strict Mode is off
images: {
domains: ["storage.hamyanedalat.com", "/"],
remotePatterns: [
{
protocol: "https",
hostname: "storage.hamyanedalat.com",
},
{
protocol: "https",
hostname: "/",
},
],
},
};
export default nextConfig;