mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-05-03 12:59:03 +00:00
12 lines
355 B
JavaScript
Executable file
12 lines
355 B
JavaScript
Executable file
// Copyright (C) 2017-2020 Smart code 203358507
|
|
|
|
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'));
|