vuejs / devtools-v6

⚙️ Browser devtools extension for debugging Vue.js applications.
https://devtools-v6.vuejs.org/
MIT License
24.68k stars 4.14k forks source link

vue data accessible to vue-devtools even in production on a laravel spark installation #257

Closed EventFellows closed 7 years ago

EventFellows commented 7 years ago

I am using vue 2.1.10 and did run the production flag

posva commented 7 years ago

You should open the issue in that project instead.

The way it works is by replacing process.env.NODE_ENV with 'production'. With webpack we use DefinePlugin to do it.

There's also an devtools option: https://vuejs.org/v2/api/#devtools in Vue to disable it.

Hope it helps to solve the issue on the build process of laravel spark 🙂