Reputation: 151
I have set up vue-storefront on https://hoversport.no/.
Not sure where to look and where to start, how to solve this issue.
Expected results should be like this: https://demo.mage-pwa.io/
Any help is truly appreciated!
This is the vue-storefront/config files https://github.com/Decntdefalt/vue-storefront-config
This is the vue-storefront-api/config file https://github.com/Decntdefalt/vue-storefront-api-config
Upvotes: 1
Views: 1943
Reputation: 2744
according to the configs it seems that your node app (vue storefront api) was not correctly configured in your nginx. https://hoversport.no/api/catalog should return a response and currently it doesn't.
What is missing here is nginx config mentioned at: https://github.com/DivanteLtd/vue-storefront/blob/master/docs/guide/installation/production-setup.md#nginx
and if it's correctly pointed, you should navigate to your vue-storefront-api folder and run:
node_modules/pm2/bin/pm2 logs
to investigate the remaining issues with api node app.
Upvotes: 1