diff options
author | 2020-12-14 21:15:42 +0200 | |
---|---|---|
committer | 2020-12-14 21:15:42 +0200 | |
commit | 0ef1dee81c44df8e7d37f446c0d5385e2aedad03 (patch) | |
tree | a696f401ed3ba8cbb2ab2ed3e625bb7d33dad0aa /webpack.config.js | |
parent | Update tests to match with changes in discovery (diff) |
Add BACKEND_URL env variable for build
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index babea35..d2bf5aa 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -88,7 +88,8 @@ module.exports = (env) => { REACT_APP_SHA: "development", REACT_APP_SENTRY_DSN: "https://[email protected]/1234", REACT_APP_BRANCH: "development", - REACT_APP_OAUTH2_CLIENT_ID: "0" + REACT_APP_OAUTH2_CLIENT_ID: "0", + BACKEND_URL: "https://forms-api.pythondiscord.com/" }), new HtmlWebpackPlugin({ inject: true, |