2024-03-03 12:02:04 +03:30
|
|
|
/** @type {import('next').NextConfig} */
|
2024-05-28 01:51:53 +03:30
|
|
|
const nextConfig = {
|
|
|
|
|
reactStrictMode: false, // React Strict Mode is off
|
|
|
|
|
images: {
|
|
|
|
|
minimumCacheTTL: 2592000,
|
|
|
|
|
domains: ["storage.vesmeh.com"],
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "storage.vesmeh.com",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
};
|
2024-03-03 12:02:04 +03:30
|
|
|
|
|
|
|
|
export default nextConfig;
|