webpack won't set to production. Defaults to development2019 Community Moderator ElectionUpstart env stanza not setting environment variables (like NODE_ENV) for Node.js applicationNPM vs. Bower vs. Browserify vs. Gulp vs. Grunt vs. WebpackAWS Elastic Beanstalk - How to build bundle JS using npm and webpackSetting environment variables when running node application using webpack-dev-server?webpack dev server Failed to load resourceVueJS shows “development mode” message even with on build in production-modeHow to create production build in react application with Webpack 1.xWebpack js bundle gets loaded but not executedConfigure webpack production buildHow to access process.env variable from a script command
What is IP squat space
At what level can a dragon innately cast its spells?
Why using two cd commands in bash script does not execute the second command
SQL Server Primary Login Restrictions
How to answer questions about my characters?
It's a yearly task, alright
Can anyone tell me why this program fails?
Instead of Universal Basic Income, why not Universal Basic NEEDS?
Ban on all campaign finance?
How do anti-virus programs start at Windows boot?
Possible Leak In Concrete
How to simplify this time periods definition interface?
Make a transparent 448*448 image
Is it normal that my co-workers at a fitness company criticize my food choices?
Professor being mistaken for a grad student
PTIJ: Who should pay for Uber rides: the child or the parent?
Why are there 40 737 Max planes in flight when they have been grounded as not airworthy?
Employee lack of ownership
Font with correct density?
RegionDifference for Cylinder and Cuboid
Life insurance that covers only simultaneous/dual deaths
Counting certain elements in lists
Is having access to past exams cheating and, if yes, could it be proven just by a good grade?
Official degrees of earth’s rotation per day
webpack won't set to production. Defaults to development
2019 Community Moderator ElectionUpstart env stanza not setting environment variables (like NODE_ENV) for Node.js applicationNPM vs. Bower vs. Browserify vs. Gulp vs. Grunt vs. WebpackAWS Elastic Beanstalk - How to build bundle JS using npm and webpackSetting environment variables when running node application using webpack-dev-server?webpack dev server Failed to load resourceVueJS shows “development mode” message even with on build in production-modeHow to create production build in react application with Webpack 1.xWebpack js bundle gets loaded but not executedConfigure webpack production buildHow to access process.env variable from a script command
I'm lost. I've been following a Udemy Webpack 4 tutorial on webpack and I am stuck on having different configs for different modes.
I can build from my production config just fine, but when it comes to running the node server, it's not set to production.
I have my main.js write this:
console.log(`Environment is: $process.env.NODE_ENV`
and I have only seen it in show as Development.
Here's my package.json's script to run production: I run npm run build and then npm run prod
"scripts":
"build:dev": "webpack --config=config/webpack.dev.js",
"build": "webpack --config=config/webpack.prod.js",
"dev": "nodemon --inspect --watch config --watch src/server
src/server/main.js",
"prod": "cross-env NODE_ENV=production node src/server/main.js"
,
It was mentioned that I needed to define NODE_ENV in the webpack prod config in the plugin section. Here is how I have it:
new webpack.DefinePlugin(
'process.env':
NODE_ENV:'"production"'
),
I've tried it in different ways: 'process.env': 'NODE_ENV': JSON.Stringify("production") and a couple of other ways and I have had no luck.
Here is my repository to see my complete config: https://github.com/PepperAddict/webpack-express
I would appreciate any help even recommendation on a better way to set this up. Thank you in advance!
node.js webpack production webpack-4
add a comment |
I'm lost. I've been following a Udemy Webpack 4 tutorial on webpack and I am stuck on having different configs for different modes.
I can build from my production config just fine, but when it comes to running the node server, it's not set to production.
I have my main.js write this:
console.log(`Environment is: $process.env.NODE_ENV`
and I have only seen it in show as Development.
Here's my package.json's script to run production: I run npm run build and then npm run prod
"scripts":
"build:dev": "webpack --config=config/webpack.dev.js",
"build": "webpack --config=config/webpack.prod.js",
"dev": "nodemon --inspect --watch config --watch src/server
src/server/main.js",
"prod": "cross-env NODE_ENV=production node src/server/main.js"
,
It was mentioned that I needed to define NODE_ENV in the webpack prod config in the plugin section. Here is how I have it:
new webpack.DefinePlugin(
'process.env':
NODE_ENV:'"production"'
),
I've tried it in different ways: 'process.env': 'NODE_ENV': JSON.Stringify("production") and a couple of other ways and I have had no luck.
Here is my repository to see my complete config: https://github.com/PepperAddict/webpack-express
I would appreciate any help even recommendation on a better way to set this up. Thank you in advance!
node.js webpack production webpack-4
add a comment |
I'm lost. I've been following a Udemy Webpack 4 tutorial on webpack and I am stuck on having different configs for different modes.
I can build from my production config just fine, but when it comes to running the node server, it's not set to production.
I have my main.js write this:
console.log(`Environment is: $process.env.NODE_ENV`
and I have only seen it in show as Development.
Here's my package.json's script to run production: I run npm run build and then npm run prod
"scripts":
"build:dev": "webpack --config=config/webpack.dev.js",
"build": "webpack --config=config/webpack.prod.js",
"dev": "nodemon --inspect --watch config --watch src/server
src/server/main.js",
"prod": "cross-env NODE_ENV=production node src/server/main.js"
,
It was mentioned that I needed to define NODE_ENV in the webpack prod config in the plugin section. Here is how I have it:
new webpack.DefinePlugin(
'process.env':
NODE_ENV:'"production"'
),
I've tried it in different ways: 'process.env': 'NODE_ENV': JSON.Stringify("production") and a couple of other ways and I have had no luck.
Here is my repository to see my complete config: https://github.com/PepperAddict/webpack-express
I would appreciate any help even recommendation on a better way to set this up. Thank you in advance!
node.js webpack production webpack-4
I'm lost. I've been following a Udemy Webpack 4 tutorial on webpack and I am stuck on having different configs for different modes.
I can build from my production config just fine, but when it comes to running the node server, it's not set to production.
I have my main.js write this:
console.log(`Environment is: $process.env.NODE_ENV`
and I have only seen it in show as Development.
Here's my package.json's script to run production: I run npm run build and then npm run prod
"scripts":
"build:dev": "webpack --config=config/webpack.dev.js",
"build": "webpack --config=config/webpack.prod.js",
"dev": "nodemon --inspect --watch config --watch src/server
src/server/main.js",
"prod": "cross-env NODE_ENV=production node src/server/main.js"
,
It was mentioned that I needed to define NODE_ENV in the webpack prod config in the plugin section. Here is how I have it:
new webpack.DefinePlugin(
'process.env':
NODE_ENV:'"production"'
),
I've tried it in different ways: 'process.env': 'NODE_ENV': JSON.Stringify("production") and a couple of other ways and I have had no luck.
Here is my repository to see my complete config: https://github.com/PepperAddict/webpack-express
I would appreciate any help even recommendation on a better way to set this up. Thank you in advance!
node.js webpack production webpack-4
node.js webpack production webpack-4
asked Mar 6 at 18:39
PepperAddictPepperAddict
4819
4819
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55030079%2fwebpack-wont-set-to-production-defaults-to-development%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55030079%2fwebpack-wont-set-to-production-defaults-to-development%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown