mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-29 21:17:17 +00:00
11 lines
353 B
Plaintext
11 lines
353 B
Plaintext
- bugsnag_js_key = ENV['BUGSNAG_JS_KEY'] || ENV['BUGSNAG_API_KEY']
|
|
- if bugsnag_js_key.present?
|
|
%script{src: "//d2wy8f7a9ursnm.cloudfront.net/v6/bugsnag.min.js"}
|
|
:javascript
|
|
window.bugsnagClient = bugsnag({
|
|
apiKey: "#{bugsnag_js_key}",
|
|
beforeSend: function (report) {
|
|
report.app.releaseStage = "#{Rails.env}"
|
|
}
|
|
});
|