web/next.config.js

16 lines
318 B
JavaScript

/** @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;