chat-nface / frontend /next.config.js
zack
feat: πŸš€ Update Chat-nFace configurations
a053984
raw
history blame
259 Bytes
const withPlugins = require('next-compose-plugins');
const nextConfig = {
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack'],
});
return config;
},
};
module.exports = withPlugins([], nextConfig);