From 93e86e952b5f1b22364a78e435ac6aa726c6aac2 Mon Sep 17 00:00:00 2001 From: masaaki Date: Tue, 31 Oct 2023 09:11:46 +0000 Subject: [PATCH] =?UTF-8?q?Merged=20PR=20541:=20StaticWebConfigApp.json?= =?UTF-8?q?=E3=81=AE=E5=AE=9A=E7=BE=A9=E3=82=92=E8=BF=BD=E5=8A=A0=E3=81=99?= =?UTF-8?q?=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 概要 [Task2928: StaticWebConfigApp.jsonの定義を追加する](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/2928) - 元PBI or タスクへのリンク(内容・目的などはそちらにあるはず) - 何をどう変更したか、追加したライブラリなど - globalHeadersに対して"X-Frame-Options": "SAMEORIGIN"の設定を追加しました。 - このPull Requestでの対象/対象外 - 対象外なし - 影響範囲(他の機能にも影響があるか) - 無し ## レビューポイント - 特になし ## UIの変更 - 無し ## 動作確認状況 - ローカルで確認済。ただし、ローカルはもともと"X-Frame-Options": "SAMEORIGIN"となっていたのでdev反映後に再度確認実施予定。 ## 補足 - 相談、参考資料などがあれば --- dictation_client/staticwebapp.config.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dictation_client/staticwebapp.config.json b/dictation_client/staticwebapp.config.json index e094983..d558f4b 100644 --- a/dictation_client/staticwebapp.config.json +++ b/dictation_client/staticwebapp.config.json @@ -1,4 +1,7 @@ { + "globalHeaders": { + "X-Frame-Options": "SAMEORIGIN" + }, "navigationFallback": { "rewrite": "/index.html" }