Vue Devtools #1734
-
By default the Vue environment is in production mode, is there a way to change it to development mode to enable devtools? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello, @aldoemir By default, Vue is in production mode when you use a build. This disables devtools for performance reasons. To enable Vue devtools in a specific environment like the
Let me know if this resolves the issue or if further debugging is needed! 😊 Thanks and regards, |
Beta Was this translation helpful? Give feedback.
Hello, @aldoemir
By default, Vue is in production mode when you use a build. This disables devtools for performance reasons. To enable Vue devtools in a specific environment like the
admin
package, you need to run the app in development mode. Here's how you can do it:Navigate to the specific package directory where you want to enable devtools:
cd packages/Webkul/Admin/
Install dependencies and run the development server:
npm install && npm run dev
Refresh your page in the browser.
Access Vue devtools:
F12
orCtrl + Shift + I
.Let me know if this resolves the issue or if further debugging is needed! 😊
…