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
Source:stackexchange.com