Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 7 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
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') |
||
|
|||
7 | }); |