Skip to content

Commit

Permalink
Fix/App Safe iframe
Browse files Browse the repository at this point in the history
  • Loading branch information
kkatusic committed Dec 11, 2024
1 parent d2fe5e6 commit 8e00d26
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,15 @@ const moduleExports = withBundleAnalyzer({
headers: [
{
key: 'X-Frame-Options',
value: 'SAMEORIGIN',
value: 'ALLOW-FROM https://app.safe.global',
},
{
key: 'Content-Security-Policy',
value: "frame-ancestors 'self'",
value: "frame-ancestors 'self' https://app.safe.global",
},
{
key: 'Access-Control-Allow-Origin',
value: 'https://app.safe.global',
},
{
key: 'X-Content-Type-Options',
Expand Down

0 comments on commit 8e00d26

Please sign in to comment.