web/next.config.js

10 lines
204 B
JavaScript
Raw Normal View History

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: {
domains: ["storage.vesmook.com"],
},
};
2024-01-10 11:04:28 +03:30
2024-02-11 17:24:30 +03:30
module.exports = nextConfig;