Vue.js CLI
First of all sorry if this is a stupid question, I'm relatively new to the world of Vue.js and haven't used it before with Webstorm.
I've set up a project using the Vue.js CLI and configured it from the terminal and then I have opened that folder with the latest version of Webstorm. I am also running on Node.js 12.0.0. Is there any particular configuration I need to do in Webstorm to get the project running correctly or will Webstorm read the project created by Vue.js CLI on its own?
Please sign in to leave a comment.
npm serve command can be run from the editor, using the gutter icons next to scrips in package.json:
Once the app is started, create a new JavaScript Debug run configuration, specify the URL your app is running on (http://localhost:8080) in it, press either Run or Debug to open your application in browser.
Please see https://blog.jetbrains.com/webstorm/2018/01/working-with-vue-js-in-webstorm/, Debugging the app section