// webpack.config.js
const webpack = require('webpack');
const path = require('path');
module.exports = {
entry: path.join(__dirname, 'src', 'app-client.js'),
output: {
path: path.join(__dirname, 'src', 'static', 'js'),
filename: 'bundle.js'
},
module: {
loaders: [{
test: path.join(__dirname, 'src'),
loader: ['babel-loader'],
query: {
cacheDirectory: 'babel_cache',
presets: ['react', 'es2015']
}
}]
},
plugins: [
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV)
}),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.optimize.UglifyJsPlugin({
compress: { warnings: false },
mangle: true,
sourcemap: false,
beautify: false,
dead_code: true
})
]
};
我已检查文件名为webpack.config.js
。
文件位于项目的根目录中。
它有module.exports
。
那么可能出现什么问题?
运行
时出现错误output filename not configured
NODE_ENV=production node_modules/.bin/webpack -p
当前目录是根项目/myproject$
解决了
答案 0 :(得分:1)
如果有人来到这里。发生此错误是因为/js/
内没有/src/
文件夹。看起来像webpack dosent创建文件夹。因此,在使用mkdir
创建文件夹后,它运行顺畅。