{
entry: {
application: _path + '/app/app.js'
}
module: {
loaders: [{
test: /\.jade$/,
loader: "jade-loader"
}]
},
plugins: [
new HtmlPlugin({
title: 'Title',
chunks: ['application', 'vendors'],
filename: 'index.html',
template: path.join(_path, 'app', 'assets', 'templates', 'layouts', 'index.jade')
})
]
}