Issues (18)

helpers/plugins/html.js (1 issue)

Severity
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
Consider using the path module for constructing paths since they are otherwise not cross-OS compatible.
Loading history...
7
});