Skip to content
This repository has been archived by the owner on Nov 30, 2020. It is now read-only.

Commit

Permalink
fix: build environment set false
Browse files Browse the repository at this point in the history
  • Loading branch information
matsp committed Nov 14, 2017
1 parent bca2c1f commit 141c142
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webpack.config.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = merge(common, {
plugins: [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: 'development'
NODE_ENV: '"development"'
}
}),
new webpack.LoaderOptionsPlugin({
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = merge(common, {
plugins: [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: 'production'
NODE_ENV: '"production"'
}
}),
new webpack.LoaderOptionsPlugin({
Expand Down

0 comments on commit 141c142

Please sign in to comment.