mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
10 lines
306 B
JavaScript
Executable file
10 lines
306 B
JavaScript
Executable file
const React = require('react');
|
|
const ReactDOM = require('react-dom');
|
|
const Sentry = require('@sentry/browser');
|
|
const App = require('./App');
|
|
|
|
if (typeof process.env.SENTRY_DSN === 'string') {
|
|
Sentry.init({ dsn: process.env.SENTRY_DSN });
|
|
}
|
|
|
|
ReactDOM.render(<App />, document.getElementById('app'));
|