Vue.js is detected on this page. Devtools inspection is not available because it's in production mode or explicitly disabled by the author

前端 未结 7 2539
走了就别回头了
走了就别回头了 2021-02-12 11:08

I\'m trying to enable vue-devtools in Google Chrome. But I cannot enable it. I\'m using vue.js inside the Laravel application.

My server runs using

7条回答
  •  伪装坚强ぢ
    2021-02-12 11:50

    When using Laravel just make sure you run the proper webpack for your environment for development . Running

    npm run watch

    should build Vue with debug mode on. Using

    npm run production

    minifies Vue for production. This will save you having to remember to toggle the debug mode when building for production.

提交回复
热议问题