20 lines
398 B
JavaScript
20 lines
398 B
JavaScript
|
|
/** @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;
|