我想为我的网络app
建议2个不同的设计。
我应该如何在webpack中定义它以便生成2个捆绑文件?
其中一个来自index.html
index_alt.html
由于
答案 0 :(得分:0)
感谢video。 我解决了我的问题
为了为每个条目提供多个输出,我必须执行以下操作:
entry: {
vue: './src/main.js',
vue_alt: './src/main_alt.js'
},
output: {
path: path.resolve(__dirname,'../Server', config.path),
publicPath: '/resources/',
filename: '[name].app.js' // name will have the value of each properties of the entry (vue, vue_alt)
},