mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-01-11 22:40:31 +00:00
46 lines
1.4 KiB
JavaScript
Executable file
46 lines
1.4 KiB
JavaScript
Executable file
// Copyright (C) 2017-2022 Smart code 203358507
|
|
|
|
if (typeof process.env.SENTRY_DSN === 'string') {
|
|
const Sentry = require('@sentry/browser');
|
|
Sentry.init({ dsn: process.env.SENTRY_DSN });
|
|
}
|
|
|
|
const Bowser = require('bowser');
|
|
const browser = Bowser.parse(window.navigator?.userAgent || '');
|
|
if (browser?.platform?.type === 'desktop') {
|
|
document.querySelector('meta[name="viewport"]')?.setAttribute('content', '');
|
|
}
|
|
|
|
const React = require('react');
|
|
const ReactDOM = require('react-dom/client');
|
|
const i18n = require('i18next');
|
|
const { initReactI18next } = require('react-i18next');
|
|
const stremioTranslations = require('stremio-translations');
|
|
const App = require('./App');
|
|
|
|
const translations = Object.fromEntries(Object.entries(stremioTranslations()).map(([key, value]) => [key, {
|
|
translation: value
|
|
}]));
|
|
|
|
i18n
|
|
.use(initReactI18next)
|
|
.init({
|
|
resources: translations,
|
|
lng: 'en-US',
|
|
fallbackLng: 'en-US',
|
|
interpolation: {
|
|
escapeValue: false
|
|
}
|
|
});
|
|
|
|
const root = ReactDOM.createRoot(document.getElementById('app'));
|
|
root.render(<App />);
|
|
|
|
if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
|
|
window.addEventListener('load', () => {
|
|
navigator.serviceWorker.register('/service-worker.js')
|
|
.catch((registrationError) => {
|
|
console.error('SW registration failed: ', registrationError);
|
|
});
|
|
});
|
|
}
|