|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: false, // React Strict Mode is off
|
|
images: {
|
|
domains: ["storage.vesmook.com"],
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "storage.vesmook.com",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|