12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- // @ts-nocheck
- // This file is generated by Umi automatically
- // DO NOT CHANGE IT MANUALLY!
- import './core/polyfill';
- import 'antd/dist/reset.css';
- import { renderClient } from 'E:/项目/outpackage/rencaishichanghoutai/node_modules/@umijs/renderer-react';
- import { getRoutes } from './core/route';
- import { createPluginManager } from './core/plugin';
- import { createHistory } from './core/history';
- import { ApplyPluginsType } from 'umi';
-
-
- const publicPath = "/";
- const runtimePublicPath = false;
-
- async function render() {
- const pluginManager = createPluginManager();
- const { routes, routeComponents } = await getRoutes(pluginManager);
-
- // allow user to extend routes
- await pluginManager.applyPlugins({
- key: 'patchRoutes',
- type: ApplyPluginsType.event,
- args: {
- routes,
- routeComponents,
- },
- });
-
- const contextOpts = pluginManager.applyPlugins({
- key: 'modifyContextOpts',
- type: ApplyPluginsType.modify,
- initialValue: {},
- });
-
- const basename = contextOpts.basename || '/';
- const historyType = contextOpts.historyType || 'browser';
-
- const history = createHistory({
- type: historyType,
- basename,
- ...contextOpts.historyOpts,
- });
-
- return (pluginManager.applyPlugins({
- key: 'render',
- type: ApplyPluginsType.compose,
- initialValue() {
- const context = {
- routes,
- routeComponents,
- pluginManager,
- rootElement: contextOpts.rootElement || document.getElementById('root'),
- publicPath,
- runtimePublicPath,
- history,
- historyType,
- basename,
- callback: contextOpts.callback,
- };
- const modifiedContext = pluginManager.applyPlugins({
- key: 'modifyClientRenderOpts',
- type: ApplyPluginsType.modify,
- initialValue: context,
- });
- return renderClient(modifiedContext);
- },
- }))();
- }
-
-
- render();
-
- window.g_umi = {
- version: '4.2.8',
- };
|