尝试运行webpack -p我在Windows 7 64位上运行,因附加错误而失败 不知道我哪里错了 这是我的webpackconfig.js文件
var HtmlWebpack=require('html-webpack-plugin');
var HtmlWebpackPluginConfig = new HtmlWebpackPlugin ({
template: __dirname + 'app/index.html',
filename: 'index.html',
inject: 'body'
});
module.exports={
entry:[
'./app/index.js'
],
output:{
path: __dirname + '/dist',
filename: "index_bundle.js"
},
module: {
loaders:[
{test: /\.js$/, exclude: /node_modules/, loader: "babel-loader"}
]
},
plugins:[HtmlWebpackPluginConfig]
}
答案 0 :(得分:2)
HtmlWebpackPlugin是未找到的引用,因为当您创建时使用了不同的名称:HtmlWebpack
如果您更改了该行:
var HtmlWebpack=require('html-webpack-plugin');
到
var HtmlWebpackPlugin = require('html-webpack-plugin');
它应该有用。