javascriptvuejs3namecheap

How to upload Vue project on namecheap server


i'm tying yo host vue webaplication on namecheap hosting. when i install i open it in console has error Uncaught TypeError: Failed to resolve module specifier "vue". Relative references must start with either "/", "./", or "../"


Solution

  • To install a vue project you need to compile it to production. First go to your project and open a terminal, then type npm run build

    Vue will build your project for production and leave the result into your dist folder. Then you can upload only the contents of the dist folder into your server

    enter image description here