mirror of
https://github.com/funamitech/mastodon
synced 2024-12-14 06:38:39 +09:00
c3e12a4dfa
Load the `common` style pack, and then charge the style pack for the current skin, independent from any selected JS pack.
16 lines
336 B
JavaScript
16 lines
336 B
JavaScript
import 'packs/public-path';
|
|
|
|
import { start } from 'flavours/glitch/common';
|
|
import { loadLocale } from 'flavours/glitch/locales';
|
|
import main from "flavours/glitch/main";
|
|
import { loadPolyfills } from 'flavours/glitch/polyfills';
|
|
|
|
start();
|
|
|
|
loadPolyfills()
|
|
.then(loadLocale)
|
|
.then(main)
|
|
.catch(e => {
|
|
console.error(e);
|
|
});
|