/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, swcMinify: true, images: { loader: "imgix", path: "https://tbd.rinsvent.ru/", }, webpack(config) { config.module.rules.push({ test: /\.svg$/, use: ["@svgr/webpack"] }); return config; } } module.exports = nextConfig