feat: add basic ui

This commit is contained in:
Yidadaa
2023-03-10 01:01:40 +08:00
parent 0decdb3e43
commit d49b2aa2c3
26 changed files with 4500 additions and 463 deletions

View File

@@ -3,6 +3,14 @@ const nextConfig = {
experimental: {
appDir: true,
},
}
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"],
}); // 针对 SVG 的处理规则
module.exports = nextConfig
return config;
},
};
module.exports = nextConfig;