blob: 176a1579a86fd4d6d9bb1da9fbe8002d391758ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import 'reflect-metadata';
import Application from './Application';
import consoleFrameStyle from './site-style';
import { ConsoleFramePresenterImpl } from './presenters/ConsoleFramePresenter';
import { container } from 'tsyringe';
import './di';
if (window.self === window.top) {
new ConsoleFramePresenterImpl().initialize();
}
try {
const app = container.resolve(Application);
app.run();
} catch (e) { console.error(e); }
const style = window.document.createElement('style');
style.textContent = consoleFrameStyle;
window.document.head.appendChild(style);
|