web/next.config.js

10 lines
204 B
JavaScript

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