I have a project created with vue cli (vue --version -> 3.0.1.)
It has next file structure:
|-public
|-src
| ...
|-pakage.json
I want to add server part using same package.json
. It will be great to move src
and public
folders to client
folder to have file structure like this:
|-client
| |-public
| |-src
|
|-server
|...
|-package.json
It should be very simple but I can't find exact example.
P.S.: This solution not works - I get This dependency was not found ./client/src
error.