建议2个不同的设计

时间:2018-04-17 13:46:02

标签: webpack

我想为我的网络app建议2个不同的设计。

我应该如何在webpack中定义它以便生成2个捆绑文件?

其中一个来自index.html

来自index_alt.html

由于

1 个答案:

答案 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)
  },