1 | const HtmlWebpackPlugin = require('html-webpack-plugin'); |
||
2 | const path = require('path'); |
||
3 | |||
4 | module.exports = new HtmlWebpackPlugin({ |
||
5 | filename: 'index.html', |
||
6 | template: path.normalize(__dirname + '/../template.ejs') |
||
0 ignored issues
–
show
Compatibility
introduced
by
![]() |
|||
7 | }); |