## 概要 [Task2004: static appについて環境ごとに設定値を切り替える](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/2004) ステージング環境用のB2C情報を設定したenvファイルを作成。 作成したenvファイルはpipelineの 「Dictation Static App Service Deploy」→「Bash Script」→「Script」 を以下のように修正することでの反映を考えています。 ■修正前 cd dictation_client && npm run build ■修正後 cd dictation_client && cp -f .env.staging .env && npm run build ※もしも本修正がdevelop環境にも影響する場合は、develop側も同様にenvファイルを作成しpipelineにコピー処理を追加する。 ## レビューポイント 設定内容が妥当か。 上記のpipelineへの追加処理が妥当か。 ## UIの変更 なし ## 動作確認状況 未 ## 補足 なし
5 lines
225 B
Plaintext
5 lines
225 B
Plaintext
VITE_STAGE=staging
|
|
VITE_B2C_CLIENTID=5d8f0db9-4506-41d6-a5bb-5ec39f6eba8d
|
|
VITE_B2C_AUTHORITY=https://adb2codmsstg.b2clogin.com/adb2codmsstg.onmicrosoft.com/b2c_1_signin_stg
|
|
VITE_B2C_KNOWNAUTHORITIES=adb2codmsstg.b2clogin.com
|