Messiala & stream

This commit is contained in:
2025-08-18 21:22:16 +03:00
parent 94be9056c4
commit 018c7c53e5
3 changed files with 694 additions and 453 deletions

View File

@@ -1,7 +1,24 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
async headers() {
return [
{
source: "/(.*)",
headers: [
{
key: "Content-Security-Policy",
value:
"frame-src 'self' https://player.twitch.tv https://embed.twitch.tv; frame-ancestors 'self';",
},
{
key: "X-Frame-Options",
value: "SAMEORIGIN",
},
],
},
];
},
};
export default nextConfig;