chat-nface / frontend /next.config.js
zack
fix: correct next config for plugin compatibility :wrench:
006c623
raw
history blame
195 Bytes
const nextConfig = {
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack'],
});
return config;
},
};
module.exports = ([], nextConfig);