Reputation: 841
I have installed WebStorm on my Windows desktop.
And I install Vue in Linux:
$ npm install -g vue-cli
$ vue init webpack vuedemo
$ npm install
$ npm run dev
Is there any way to use WebStorm on Windows for editing vuedemo in Linux?
Upvotes: 0
Views: 44
Reputation: 3757
You should better reinstall and run your npm package from Windows directly, along with your vuedemo. Main reason is because there might be some OS specific packages and commands set during installation via Linux.
Upvotes: 2