import type { NextConfig } from "next"; const nextConfig: NextConfig = { images: { remotePatterns: [ { protocol: "https", hostname: "api.travelmarine.ru", 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;