摘要: JS压缩 module.exports = { mode: 'production' }; mode:'production',指的是整个项目处于生产模式下,执行 webpack , 则自动输出压缩的JS代码(在当前最新的webpack版本下) CSS打包 安装解析css使用的loader npm 阅读全文
posted @ 2021-01-13 22:24 Serenpity 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 单个入口语法 const config = { entry:'./src/entry.js', }; module.exports = config; 入口对象语法 const config = { entry: { entry:'./src/entry.js', first:'./src/firs 阅读全文
posted @ 2021-01-13 22:22 Serenpity 阅读(128) 评论(0) 推荐(0) 编辑