create reactappを使用してアプリをブートストラップしています。
ルートに2つの.env
ファイル.env.development
を追加しました.env.production
。
私が.env.development
含む:
API_URL=http://localhost:3000/api
CALLBACK_URL=http://localhost:3005/callback
を使用react-scripts start
してアプリを実行し、コンソール出力するprocess.env
と、吐き出されます
{ NODE_ENV: "development", PUBLIC_URL: "" }
私はさまざまなことを試しましたが、開発ファイルで検証可能なものを取得していません。何が間違っているのでしょうか。
ディレクトリ構造は次のとおりです。
/.env.development
/src/index.js
Package.jsonスクリプトは次のとおりです。
"start": "export PORT=3005; npm-run-all --parallel server:start client:start",
"client:start": "export PORT=3005; react-scripts start",
"server:start": "node server.js",
"build": "react-scripts build",
編集:
@jamcreenciaは、変数の前にREACT_APP
。を付ける必要があることを正しく指摘しました。
編集2
ファイルに名前を付けて.env
も問題ありませんが、.env.development
またはを使用した場合は機能しません.end.production
package.json
ファイルを投稿できますか?