logos-site-builder/next.config.js

13 lines
293 B
JavaScript

/** @type {import('next').NextConfig} */
module.exports = {
webpack: (config, { isServer }) => {
config.module.rules.push({
test: /\.svg$/,
issuer: { and: [/\.(js|ts|md)x?$/] },
use: ["@svgr/webpack"]
});
return config;
}
}