Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
CI / CI OK (push) Has been cancelled
Deploy Website on push / Rerun on failure (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Issue Close Require / close-issues (push) Has been cancelled
Close stale issues / stale (push) Has been cancelled
32 lines
945 B
TypeScript
32 lines
945 B
TypeScript
import { initPreferences } from '@vben/preferences';
|
|
import { unmountGlobalLoading } from '@vben/utils';
|
|
|
|
import { overridesPreferences } from './preferences';
|
|
|
|
/**
|
|
* 应用初始化完成之后再进行页面加载渲染
|
|
*/
|
|
async function initApplication() {
|
|
// name用于指定项目唯一标识
|
|
// 用于区分不同项目的偏好设置以及存储数据的key前缀以及其他一些需要隔离的数据
|
|
const env = import.meta.env.PROD ? 'prod' : 'dev';
|
|
const appVersion = import.meta.env.VITE_APP_VERSION;
|
|
const namespace = `${import.meta.env.VITE_APP_NAMESPACE}-${appVersion}-${env}`;
|
|
|
|
// app偏好设置初始化
|
|
await initPreferences({
|
|
namespace,
|
|
overrides: overridesPreferences,
|
|
});
|
|
|
|
// 启动应用并挂载
|
|
// vue应用主要逻辑及视图
|
|
const { bootstrap } = await import('./bootstrap');
|
|
await bootstrap(namespace);
|
|
|
|
// 移除并销毁loading
|
|
unmountGlobalLoading();
|
|
}
|
|
|
|
initApplication();
|