classify web

This commit is contained in:
Husanjonazamov
2026-02-24 12:52:49 +05:00
commit 64af77101f
310 changed files with 45449 additions and 0 deletions

18
next.config.mjs Normal file
View File

@@ -0,0 +1,18 @@
/** @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;