0
私はreact-boilerplateを使用しているときにカスタム環境変数を追加します。 私のDEV環境では、私はAPIを私のlocalhostバックエンドに向けますが、PROD環境では私はそれをPRODバックエンドに向けます。 私はdotenv-webpackとreact-scriptsを使ってみましたが、それでも動作しません。for the dotenv-webpack私はdllPluginの下にプラグインコードを追加しました。react-boilerplateカスタム環境変数を追加します
dllPlugin: {
...
},
plugins: [
new Dotenv({
path: './.env', // Path to .env file (this is the default)
systemvars: true,
safe: true // load .env.example (defaults to "false" which does not use dotenv-safe)
})
]
...
誰でもこの機能を適用できましたか?いくつかのenlightmentを投げてください。