Files
mozimo.in/next.config.ts
2025-07-30 17:27:56 +05:30

26 lines
422 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
experimental: {
turbo: false
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
},
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack'],
});
return config;
},
};
export default nextConfig;