allow iframes

This commit is contained in:
2024-10-27 20:45:22 +01:00
parent e9abd5c6d4
commit 044b006e8d

View File

@@ -13,7 +13,19 @@ const nextConfig: NextConfig = {
}
]
},
headers: async () => {
return [
{
source: "/:path*",
headers: [
{
key: "X-Frame-Options",
value: "ALLOWALL"
},
]
}
];
},
};
export default nextConfig;