File size: 257 Bytes
ff5298c
 
 
 
a053984
 
ff5298c
a053984
 
 
 
ff5298c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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
});