From 58a55cd900be81d7db8fce25f8cfd994dee6ca9b Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Wed, 23 Mar 2022 11:13:26 -0700 Subject: [PATCH] build: prevent framing of dev app with X-Frame-Options Prevent the dev app site from being place in an iframe. --- firebase.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/firebase.json b/firebase.json index d3cec544b0e9..b87921648d16 100644 --- a/firebase.json +++ b/firebase.json @@ -14,6 +14,10 @@ { "key": "Cache-Control", "value": "no-cache" + }, + { + "key": "X-Frame-Options", + "value": "DENY" } ] }