Files
web/next.config.mjs
Husanjonazamov 64af77101f classify web
2026-02-24 12:52:49 +05:00

19 lines
401 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
htmlLimitedBots: /.*/,
images: {
unoptimized: true,
remotePatterns: [
{
protocol: "https",
hostname: "eclassify.thewrteam.in",
port: "", // You can leave this empty if there is no specific port
pathname: "/**",
},
],
},
};
export default nextConfig;