Spaces:
Configuration error
Configuration error
| 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); |