2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AWS Amplifyでの環境変数について(react)

Last updated at Posted at 2021-04-09

AWSのamplifyで環境変数の設置が分からなかったので調べてみたことを備忘録として残しておきます。

環境設定の方法

Amplifyコンソールのアプリ設定に環境変数があります。
そこにREACT_APP_を変数名にプレフィックスとしてつけて環境変数を設定します。

スクリーンショット 2021-04-09 9.38.56.png

そしてビルドの設定画面で先ほど設定した環境変数を設定します。

build:
  commands:
    - npm run build
    - echo "REACT_APP_HOGE=$REACT_APP_HOGE" >> .env

このようにすればreactアプリから読み込めるかと思います。
他に設定方法がありましたらご教示いただけると幸いです。

参考記事
https://qiita.com/kojiisd/items/709557fa4649aa25b483

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?