| 1234567891011121314151617181920 |
- const path = require("path")
- // node写法
- module.exports = {
- // development 开发
- // production 生成
- mode: 'production',
- // entry: "./demo.js"
- // entry: ['./src/a.js', './demo.js']
- // entry: {
- // hi: './src/a.js',
- // hello: './src/b.js'
- // }
- entry: './src/a.js',
- // output: {
- // filename: 'xxx.js',
- // clean: true,
- // path: path.resolve(__dirname, 'news')
- // }
- }
- // 打包命令:yarn webpack
|