Open aurium opened 1 year ago
We can run npx vue-devtools and load the client with <script src="http://localhost:8098"></script> in the app index.html.
npx vue-devtools
<script src="http://localhost:8098"></script>
This loading method difficults building configuration to enable/disable debuging features.
It would be nice if we could load devtools client with import("http://localhost:8098"), so it will be easy to enable/disable it.
import("http://localhost:8098")
import('@vue/devtools') also wont work because it is not a ESM build. However, loading from local service (as pointed above) is also better to reduce the build size.
import('@vue/devtools')
We can run
npx vue-devtools
and load the client with<script src="http://localhost:8098"></script>
in the app index.html.This loading method difficults building configuration to enable/disable debuging features.
It would be nice if we could load devtools client with
import("http://localhost:8098")
, so it will be easy to enable/disable it.