Block /auth/:path, nothing else. (#6949)

* Block /auth/:path, nothing else.

* Also add /signup
This commit is contained in:
Alex van Andel
2023-02-08 16:27:18 +00:00
committed by GitHub
parent 9cad7086d7
commit f7445bf8a1
+10 -2
View File
@@ -185,8 +185,16 @@ const nextConfig = {
async headers() {
return [
{
// prettier-ignore
source: "/:path*((?<!\/embed$)(?<!\/embed\/preview\.html$))",
source: "/auth/:path*",
headers: [
{
key: "X-Frame-Options",
value: "DENY",
},
],
},
{
source: "/signup",
headers: [
{
key: "X-Frame-Options",