Is it possible to deploy nuxt-js spa project in shared hosting like hostgator through cpanel?
I have tried several time to run below command, it's generate dist folder but didn't work.
My command: npm run build
Can you help me please?
Is it possible to deploy nuxt-js spa project in shared hosting like hostgator through cpanel?
I have tried several time to run below command, it's generate dist folder but didn't work.
My command: npm run build
Can you help me please?
npm run build
Builds files for `npm run start` serving. And looks like you want it to be static files, which you just upload to hosting. So you should run:
npm run generate
then in `/dist/` you will find static spa.
Yes, it is possible to deploy Nuxt SPA to shared hosting. You can follow the official documentation of Nuxt.
Step by step to get the file of generate:
npm run build
npm run generate
/dist
all assets of the folder dist
can be uploaded/deploy to your shared hosting.Thank you maybe can help.
© 2022 - 2024 — McMap. All rights reserved.