NUXT_E7001

Payload URL includes a hostname.

E7001

A payload URL was requested with a full URL that includes a hostname. Payloads are always served from the same origin as the app, so a URL with a hostname points outside the app and is rejected.

Resolution

Pass a relative path instead of a full URL:

loadPayload('/some-page')
Read more in Docs > API > Composables > Use Nuxt App#payload.
Was this helpful?