mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 09:18:06 +01:00
7 lines
167 B
JavaScript
7 lines
167 B
JavaScript
import loadPolyfills from '../mastodon/load_polyfills';
|
|
|
|
loadPolyfills().then(() => {
|
|
require('../mastodon/main').default();
|
|
}).catch(e => {
|
|
console.error(e);
|
|
});
|