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.
14 lines
357 B
14 lines
357 B
import './public-path'; |
|
import { start } from '../mastodon/common'; |
|
import { loadLocale } from '../mastodon/load_locale'; |
|
import { loadPolyfills } from '../mastodon/polyfills'; |
|
|
|
start(); |
|
|
|
loadPolyfills().then(loadLocale).then(async () => { |
|
const { default: main } = await import('mastodon/main'); |
|
|
|
return main(); |
|
}).catch(e => { |
|
console.error(e); |
|
});
|
|
|