mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-12 14:03:16 -08:00
15 lines
355 B
TypeScript
15 lines
355 B
TypeScript
import '@/entrypoints/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: unknown) => {
|
|
console.error(e);
|
|
});
|