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










0















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!










share|improve this question


























    0















    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!










    share|improve this question
























      0












      0








      0


      1






      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!










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 6 at 18:39









      PepperAddictPepperAddict

      4819




      4819






















          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
          );



          );













          draft saved

          draft discarded


















          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















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

          Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

          Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved