You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
324 B
16 lines
324 B
|
6 years ago
|
import './public-path';
|
||
|
2 years ago
|
import main from 'mastodon/main';
|
||
|
3 years ago
|
|
||
|
8 years ago
|
import { start } from '../mastodon/common';
|
||
|
3 years ago
|
import { loadLocale } from '../mastodon/locales';
|
||
|
3 years ago
|
import { loadPolyfills } from '../mastodon/polyfills';
|
||
|
8 years ago
|
|
||
|
|
start();
|
||
|
9 years ago
|
|
||
|
3 years ago
|
loadPolyfills()
|
||
|
|
.then(loadLocale)
|
||
|
|
.then(main)
|
||
|
2 years ago
|
.catch((e: unknown) => {
|
||
|
3 years ago
|
console.error(e);
|
||
|
|
});
|