web/next.config.js

16 lines
318 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-03-03 22:37:31 +03:30
remotePatterns: [
{
protocol: "https",
hostname: "storage.vesmook.com",
},
],
2024-02-11 17:24:30 +03:30
},
};
2024-01-10 11:04:28 +03:30
2024-02-11 17:24:30 +03:30
module.exports = nextConfig;