'use strict'
const path = require('path')
module.exports = {
entry: {
// 多页面入口配置
index: './src/index.js',
search: './src/search.js'
},
output: {
path: path.join(__dirname, 'dist'),
// 多页面打包,需要 [name] 占位符来自动实现多个打包出口
filename: '[name].js'
},
mode: 'production'
}
网友评论