Notice: The Monaca & Onsen UI Community Forum is shutting down.
For Onsen UI bug reports, feature requests and questions, please use the Onsen UI GitHub issues page. For help with Monaca, please contact Monaca Support Team.
Thank you to all our community for your contributions to the forum. We look forward to hearing from you in the new communication channels.
vue-onsenui-kitchensink not working with monaca debugger.
-
I was trying to use monaca cli to run
monaca debug
inside of vue-onsenui-kitchensink but wasn’t able to get the debugger to show the vue-onsenui-kitchensink app.The app just freezes after the paring starts. No local projects are shown.
Was wondering if there are specific steps into adding monaca to work with existing vue.js projects.
Thanks!
-
@rlam3 Before running
monaca debug
command, you will need to generate the content forwww
folder first. Here are the steps to properly run vue-onsenui-kitchensink with Monaca Debugger:- Navigate to the project folder.
- run
npm install
to install the dependencies. - run
npm run build
to generatewww
folder which will be used for Monaca Debugger and Build server later. - Now, everything is ready. You can run
monaca debug
.
Hope this helps!