mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 22:48:07 +01:00
7 lines
185 B
JavaScript
7 lines
185 B
JavaScript
import loadPolyfills from 'flavours/glitch/util/load_polyfills';
|
|
|
|
loadPolyfills().then(() => {
|
|
require('flavours/glitch/util/main').default();
|
|
}).catch(e => {
|
|
console.error(e);
|
|
});
|