2024-01-10 11:04:28 +03:30
|
|
|
/** @type {import('next').NextConfig} */
|
2024-02-11 17:24:30 +03:30
|
|
|
const nextConfig = {
|
|
|
|
|
reactStrictMode: false, // React Strict Mode is off
|
|
|
|
|
images: {
|
2024-03-10 11:17:48 +03:30
|
|
|
domains: ["storage.vesmeh.com"],
|
2024-03-03 22:37:31 +03:30
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
2024-03-10 11:17:48 +03:30
|
|
|
hostname: "storage.vesmeh.com",
|
2024-03-03 22:37:31 +03:30
|
|
|
},
|
|
|
|
|
],
|
2024-02-11 17:24:30 +03:30
|
|
|
},
|
|
|
|
|
};
|
2024-01-10 11:04:28 +03:30
|
|
|
|
2024-02-11 17:24:30 +03:30
|
|
|
module.exports = nextConfig;
|