node_modules path folder
-
Hello all,
I made a yarn install --module-folder C:\temp\folder this is for using a shared node_modules folder among my microservices. now if I try to run quasar dev from the frontend folder I gor error :Error Unknown command “dev”". How can I use a node_modules folder in a different path? -
@cosby I haven’t tested that approach for node_modules specifically, but you can do it this way:
yarn install
in frontend- move node_modules to C:\temp\folder
- create a symlink pointing from frontend\node_modules to C:\temp\folder\node_modules
quasar dev
That would be great if you let here know if that works or not
Cheers!