Files
my-links/next.config.js

15 lines
221 B
JavaScript

module.exports = {
reactStrictMode: true,
images: {
domains: ['lh3.googleusercontent.com']
},
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"]
});
return config;
}
}