mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
sentry confix renamed with lowercase
This commit is contained in:
parent
5658729ca6
commit
f0d90e9f8b
2 changed files with 4 additions and 4 deletions
|
|
@ -6,7 +6,7 @@
|
|||
"website": "www.stremio.com",
|
||||
"private": true,
|
||||
"license": "GPLv3",
|
||||
"Sentry": {
|
||||
"sentry": {
|
||||
"dsn": "https://e47a6d214ae4478b81136c29612003a7@sentry.io/1911455"
|
||||
},
|
||||
"scripts": {
|
||||
|
|
@ -69,4 +69,4 @@
|
|||
"webpack-cli": "3.3.10",
|
||||
"webpack-dev-server": "3.10.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
const React = require('react');
|
||||
const ReactDOM = require('react-dom');
|
||||
const Sentry = require('@sentry/browser');
|
||||
const Package = require('../package');
|
||||
const package = require('../package.json');
|
||||
const App = require('./App');
|
||||
|
||||
Sentry.init({ dsn: Package.Sentry.dsn });
|
||||
Sentry.init(package.sentry);
|
||||
|
||||
ReactDOM.render(<App />, document.getElementById('app'));
|
||||
|
|
|
|||
Loading…
Reference in a new issue