我已经阅读了堆栈溢出中的所有文章以及来自 google 搜索的大约 200 多篇文章,我一生都无法理解 process.env。无论我做什么,它始终是一个空对象。
const path = require("path");
const webpack = require('webpack');
module.exports = {
entry: {
search: './src/search/search_index.js',
// search: './src/search/search_index.js'
},
output: {
path: path.join(__dirname, "../website/public/javascript/react"),
publicPath: '/',
filename: "[name].bundle.js"
},
module: {
loaders: [{
exclude: /node_modules/,
loader: 'babel',
query: {
presets: ['react', 'es2015', 'stage-1']
}
}]
},
resolve: {
extensions: ['', '.js', '.jsx']
},
devServer: {
historyApiFallback: true,
contentBase: './'
},
plugins: [
new webpack.DefinePlugin({
"process.env" : {
'NODE_ENV': '"production"'
}
})
]
};
"scripts": {
"start": "webpack-dev-server --inline --hot --content-base src/search",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch"
}
console.log(process.env);
// 从正在运行的应用程序中的渲染方法开始 "npm start"
总是返回 {}
我试图在我的构建中将 NODE_ENV 设置为生产,并且 %NODE_ENV% 显示生产的运气为零,但不管我在控制台中收到关于它在较慢的构建上运行以使用 NODE_ENV 生产的警告消息。
为了尝试解开正在发生的事情,我只是想看看我的应用程序在 process.env 中得到了什么,它是一个空对象。然后我尝试使用defineplugin对其进行硬编码,以再次测试发生了什么,结果是相同的。
我的头撞到了这个大约 3 个小时。任何帮助表示赞赏。