44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
/** @type {import('next').NextConfig} */
|
|
import withTM from 'next-transpile-modules';
|
|
|
|
const nextConfig = withTM(['zano_ui'])({ // Ensure Next.js transpiles `zano_ui`
|
|
reactStrictMode: true,
|
|
webpack: (config) => {
|
|
const fileLoaderRule = config.module.rules.find((rule) =>
|
|
rule.test?.test?.(".svg")
|
|
);
|
|
|
|
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: [
|
|
{
|
|
loader: '@svgr/webpack',
|
|
options: {
|
|
svgoConfig: {
|
|
plugins: {
|
|
removeViewBox: false
|
|
}
|
|
},
|
|
},
|
|
},
|
|
],
|
|
}
|
|
);
|
|
|
|
fileLoaderRule.exclude = /\.svg$/i;
|
|
|
|
return config;
|
|
},
|
|
});
|
|
|
|
export default nextConfig;
|