Deploying a Full Stack Node app npm / package.json architecture
问题 I have a repository which contains a backend (Node/Express) and a Frontend client, as such: ├── build ├── config ├── coverage │ └── lcov-report ├── dist │ └── static ├── server (node/express server) │ ├── coverage │ ├── docs | ├── src │ ├── etc │ └── package.json | ├── src (Vue.js : client code) │ ├── api │ ├── assets │ ├── components │ ├── router │ └── store └── static └── package.json I have two package.json files, one for the client and one for the server. I face issues deploying on