diff --git a/next.config.ts b/next.config.ts index 342b2e5..5006484 100644 --- a/next.config.ts +++ b/next.config.ts @@ -13,7 +13,19 @@ const nextConfig: NextConfig = { } ] }, - + headers: async () => { + return [ + { + source: "/:path*", + headers: [ + { + key: "X-Frame-Options", + value: "ALLOWALL" + }, + ] + } + ]; + }, }; export default nextConfig;