separated bugsnag token
This commit is contained in:
parent
53d9e221a5
commit
d4dc6f2a28
3
app.json
3
app.json
@ -45,6 +45,9 @@
|
||||
},
|
||||
"URL": {
|
||||
"required": true
|
||||
},
|
||||
"BUGSNAG_KEY": {
|
||||
"required": true
|
||||
}
|
||||
},
|
||||
"formation": {},
|
||||
|
@ -26,6 +26,6 @@
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
</body>
|
||||
<script src="//d2wy8f7a9ursnm.cloudfront.net/bugsnag-3.min.js" data-apikey="8165e2069605bc20ccd0792dbbfae7bf"></script>
|
||||
<script src="//d2wy8f7a9ursnm.cloudfront.net/bugsnag-3.min.js" data-apikey="<%= BUGSNAG_KEY %>"></script>
|
||||
|
||||
</html>
|
||||
</html>
|
@ -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'),
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user