chat-nface / frontend /next.config.js
zack
chore(next.config): 🔧 update import settings
ff5298c
const withImages = require('next-images');
module.exports = withImages({
webpack(config, options) {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"]
});
return config;
},
// Your other Next.js config here
});