How check if Vue is in development mode?

前端 未结 9 762
灰色年华
灰色年华 2021-01-03 18:14

When I run my Vue app, the console shows:

You are running Vue in development mode.
Make sure to turn on production mode when deploying for production.
See mo         


        
9条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-03 19:03

    Webpack is used for almost all of my Vue projects, so I check to see if webpackHotUpdate is present.

     if (webpackHotUpdate) {
          console.log('In Dev Mode');
     }
    

    It's present in the window object if the webpack dev server is running.

提交回复
热议问题