12345678910111213141516171819 |
- const withLess = require("next-with-less");
- const nextConfig = withLess({
- experimental: {
- appDir: true,
- },
- webpack(config) {
- config.module.rules.push({
- test: /\.svg$/,
- use: ["@svgr/webpack"],
- });
- return config;
- },
- });
- module.exports = nextConfig;
|