从新提交到gitee 仓库

This commit is contained in:
qcloud
2025-02-06 23:34:26 +08:00
parent e678819f70
commit c88312a914
62 changed files with 211935 additions and 7500 deletions

12
web/webpack.config.js Normal file
View File

@@ -0,0 +1,12 @@
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
module.exports = {
// 其他 Webpack 配置
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: 'server', // 启动本地服务查看报告
openAnalyzer: true, // 自动打开浏览器
generateStatsFile: false, // 是否生成 stats.json 文件
}),
],
};