import type { NextConfig } from "next"; const nextConfig: NextConfig = { images: { remotePatterns: [ { protocol: "http", hostname: "89.169.188.2", pathname: '/**' }, ], unoptimized: true, }, webpack(config) { config.module.rules.push({ test: /\.svg$/, use: [ { loader: "@svgr/webpack", options: { svgo: false, titleProp: true, ref: true, }, }, ], }); return config; }, experimental: { turbo: { rules: { "*.svg": { loaders: ["@svgr/webpack"], as: "*.js", }, }, }, }, }; export default nextConfig;