1 Star 0 Fork 0

7sings/big-file-upload

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 543 Bytes
一键复制 编辑 原始数据 按行查看 历史
wuzequn 提交于 2023-10-09 15:41 . feat: 完善代码逻辑
const HtmlPlugin = require('html-webpack-plugin');
module.exports = {
mode: 'production',
entry: './src/app.js',
output: {
path: `${__dirname}/output`,
filename: '[name]-[contenthash].js',
clean: true
},
module: {
rules: [
{
test: /\.css$/i,
use: ['style-loader', 'css-loader']
}
]
},
plugins: [
new HtmlPlugin({
filename: 'index.html',
template: './src/index.html'
})
]
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/rockwu_admin/big-file-upload.git
[email protected]:rockwu_admin/big-file-upload.git
rockwu_admin
big-file-upload
big-file-upload
master

搜索帮助