Files
data-classify-nextjs-sharp-…/next.config.ts
2026-02-24 22:49:47 +05:30

25 lines
459 B
TypeScript

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;