I have worked to a VueJs project locally. Now I have to upload it on a VM of my university and it will become public. I think I should not upload the entire directory but only the 'dist' directory that I created with the command:
npm run build
First question: Is it correct?
Second question: How do I run the server now? For local's test I used to run it with the command:
npm run serve
but I think now I should use some other commands.
Thank you for help.