mirror of https://github.com/Lapikud/tipilan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
512 B
24 lines
512 B
import type { NextConfig } from "next"; |
|
|
|
const nextConfig: NextConfig = { |
|
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;
|
|
|