JavaScript · 156 bytes Raw Blame History
1 const withSvgr = require('next-plugin-svgr');
2
3 module.exports = withSvgr({
4 reactStrictMode: true,
5 webpack(config, options) {
6 return config;
7 },
8 });