2020
10-16
10-16
详解webpack的clean-webpack-plugin插件报错
1、出错代码constpath=require('path')constCleanWebpackPlugin=require('clean-webpack-plugin')//const{CleanWebpackPlugin}=require('clean-webpack-plugin')module.exports={entry:'./input.js',output:{path:path.resolve(__dirname,'dist'),filename:'output.bundle.js'},mode:'development',plugins:[newCleanWebpackPlugin()],module:{rules:[{test:/\.(png|jpg|gif)$/i,...
继续阅读 >