[Vuejs]-What http headers are related to iframe loading ? nuxt-helmet

0๐Ÿ‘

โœ…

I found that my issue was because of this header:
Cross-Origin-Embedder-Policy: require-corp

I fixed this issue by disabling it with nuxt-helmet configs

helmet: {
    crossOriginEmbedderPolicy: false,
},

The issue wasnโ€™t from x-frame-options

Leave a comment