2024-03-15 21:34:06 +03:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
|
|
output: "standalone",
|
2024-04-18 21:21:49 +03:00
|
|
|
reactStrictMode: false,
|
2024-03-15 21:34:06 +03:00
|
|
|
images: {
|
|
|
|
remotePatterns: [
|
|
|
|
{
|
|
|
|
protocol: 'https',
|
|
|
|
hostname: 'relynolli.ru',
|
|
|
|
pathname: '/upload/**',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
protocol: 'https',
|
|
|
|
hostname: 'tehnohimgrupp.ru',
|
|
|
|
pathname: '/upload/**',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
2024-04-18 21:21:49 +03:00
|
|
|
webpack(config) {
|
|
|
|
const fileLoaderRule = config.module.rules.find((rule) =>
|
|
|
|
rule.test?.test?.('.svg'),
|
|
|
|
)
|
2024-03-15 21:34:06 +03:00
|
|
|
|
2024-04-18 21:21:49 +03:00
|
|
|
config.module.rules.push(
|
|
|
|
// Reapply the existing rule, but only for svg imports ending in ?url
|
|
|
|
{
|
|
|
|
...fileLoaderRule,
|
|
|
|
test: /\.svg$/i,
|
|
|
|
resourceQuery: /url/, // *.svg?url
|
|
|
|
},
|
|
|
|
// Convert all other *.svg imports to React components
|
|
|
|
{
|
|
|
|
test: /\.svg$/i,
|
|
|
|
issuer: fileLoaderRule.issuer,
|
|
|
|
resourceQuery: {not: [...fileLoaderRule.resourceQuery.not, /url/]}, // exclude if *.svg?url
|
|
|
|
use: ['@svgr/webpack'],
|
|
|
|
},
|
|
|
|
)
|
2024-03-15 21:34:06 +03:00
|
|
|
|
|
|
|
|
2024-04-18 21:21:49 +03:00
|
|
|
// Modify the file loader rule to ignore *.svg, since we have it handled now.
|
|
|
|
fileLoaderRule.exclude = /\.svg$/
|
|
|
|
return config
|
|
|
|
}
|
2024-03-15 21:34:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
export default nextConfig;
|