2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-05-15 12:08:46 +02:00
|
|
|
// https://vitejs.dev/config/build-options.html#build-modulepreload
|
|
|
|
import 'vite/modulepreload-polyfill';
|
|
|
|
|
|
|
|
import '@/style.scss';
|
|
|
|
import { mainBoot } from './boot/main-boot';
|
|
|
|
import { subBoot } from './boot/sub-boot';
|
|
|
|
|
2023-05-26 07:06:52 +02:00
|
|
|
const subBootPaths = ['/share', '/auth', '/miauth', '/signup-complete'];
|
2023-05-24 02:43:38 +02:00
|
|
|
|
|
|
|
if (subBootPaths.some(i => location.pathname === i || location.pathname.startsWith(i + '/'))) {
|
2023-05-15 12:08:46 +02:00
|
|
|
subBoot();
|
|
|
|
} else {
|
|
|
|
mainBoot();
|
|
|
|
}
|