javascript - webpack generates HTML files from multiple entry files;
怪我咯
怪我咯 2017-06-17 09:16:25
0
1
958

Multiple entry files generate HTML files;
According to the number of entry files, html is generated;
For example:


There are two entry files here, home and about;

Use the html-webpack-plugin plug-in to new;
is as follows:

Generate HTMl according to the number of entry files;
For example: there are two entry files above;
New twice when below;
Is it possible to encapsulate this; to make it dynamic Survival; no need to manually configure;
I have written half of it, but I can’t finish it;

Please give me a DOME;
I have an idea but I don’t know how to implement it in detail; Novice on node;;

xydArray.forEach(function(item){

var xydConf = {
    filename: './'+item+'.html',
    template: './'+item+'.html',
    chunks:[item],
    inject:true,
    hash:true
}
config.plugins.push(new htmlWebpackPlugin(xydConf));

});

module.exports = config;

xydArray is the key value of the entry file

怪我咯
怪我咯

走同样的路,发现不同的人生

reply all(1)
学霸
const pages = [
  {
    name: 'page0',
    title: 'page0',
  },
  {
    name: 'page1',
    title: 'page1',
  },
  {
    name: 'page2',
    title: 'page2',
  },
];

const plugins = pages.map(({ name, title }) => new HtmlWebpackPlugin({
  title,
  chunks: [name],
  filename: path.resolve(__dirname, `build/${name}.html`),
  template: path.resolve(__dirname, 'app/template.html'),
}));
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template