mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-27 08:02:01 +00:00
webpack: process.env.NODE_ENV are set to production or development
This commit is contained in:
parent
32aeeab0ae
commit
742ea42f97
@ -79,9 +79,6 @@ module.exports = function webpackClientConfig() {
|
||||
config.plugins.push(
|
||||
new webpack.DefinePlugin(
|
||||
Object.assign(env, {
|
||||
'process.env.NODE_ENV': JSON.stringify(
|
||||
this.options.env.NODE_ENV || (this.options.dev ? 'development' : 'production')
|
||||
),
|
||||
'process.env.VUE_ENV': JSON.stringify('client'),
|
||||
'process.mode': JSON.stringify(this.options.mode),
|
||||
'process.browser': true,
|
||||
|
@ -46,9 +46,6 @@ module.exports = function webpackServerConfig() {
|
||||
}),
|
||||
new webpack.DefinePlugin(
|
||||
Object.assign(env, {
|
||||
'process.env.NODE_ENV': JSON.stringify(
|
||||
this.options.env.NODE_ENV || (this.options.dev ? 'development' : 'production')
|
||||
),
|
||||
'process.env.VUE_ENV': JSON.stringify('server'),
|
||||
'process.mode': JSON.stringify(this.options.mode),
|
||||
'process.browser': false,
|
||||
|
Loading…
Reference in New Issue
Block a user