This repository was archived by the owner on Feb 2, 2021. It is now read-only.

Description
It looks like there might be an issue how IsAPI is being set within lib/plugin.js
https://github.com/nuxt-community/nuxtent-module/blob/master/lib/plugin.js#L35
when generating a static site isAPI is always true even when isClient is true. When serving the generated site via nginx the browser tries to load the "api" url rather than generated content one. I simply added the following, regenerated and it was good to go.
if(isClient){
isAPI = false;
}