This commit is contained in:
Kar
2026-02-24 22:49:47 +05:30
commit e6ea620e1b
47 changed files with 88728 additions and 0 deletions

24
next.config.ts Normal file
View File

@@ -0,0 +1,24 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
reactCompiler: true,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'k1-default1.siliconpin.net',
port: '',
pathname: '/**',
},
{
protocol: 'http',
hostname: '192.168.99.180',
port: '',
pathname: '/**',
},
],
},
};
export default nextConfig;