diff --git a/app.json b/app.json index 557124d4..3f446c67 100644 --- a/app.json +++ b/app.json @@ -45,6 +45,9 @@ }, "URL": { "required": true + }, + "BUGSNAG_KEY": { + "required": true } }, "formation": {}, diff --git a/server/static/index.html b/server/static/index.html index e79463d5..3613c5c0 100644 --- a/server/static/index.html +++ b/server/static/index.html @@ -26,6 +26,6 @@
- + - + \ No newline at end of file diff --git a/webpack.config.js b/webpack.config.js index f99b890c..5e33b37a 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -13,6 +13,7 @@ const definePlugin = new webpack.DefinePlugin({ SLACK_REDIRECT_URI: JSON.stringify(process.env.SLACK_REDIRECT_URI), SLACK_KEY: JSON.stringify(process.env.SLACK_KEY), BASE_URL: JSON.stringify(process.env.URL), + BUGSNAG_KEY: JSON.stringify(process.env.BUGSNAG_KEY), DEPLOYMENT: JSON.stringify(process.env.DEPLOYMENT || 'hosted'), });