1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- // @ts-nocheck
- // This file is generated by Umi automatically
- // DO NOT CHANGE IT MANUALLY!
- import './core/polyfill';
- import 'E:/work/jgz/admin2/src/global.less';
- import 'E:/work/jgz/admin2/src/global.jsx';
- import 'antd/dist/antd.less';
- import { renderClient } from 'E:/work/jgz/admin2/node_modules/@umijs/preset-umi/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 = "/w2/";
- 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,
- },
- });
-
- return (pluginManager.applyPlugins({
- key: 'render',
- type: ApplyPluginsType.compose,
- initialValue() {
- const contextOpts = pluginManager.applyPlugins({
- key: 'modifyContextOpts',
- type: ApplyPluginsType.modify,
- initialValue: {},
- });
- const basename = contextOpts.basename || '/';
- const context = {
- routes,
- routeComponents,
- pluginManager,
- rootElement: contextOpts.rootElement || document.getElementById('root'),
- publicPath,
- runtimePublicPath,
- history: createHistory({
- type: contextOpts.historyType || 'hash',
- basename,
- ...contextOpts.historyOpts,
- }),
- basename,
- };
- return renderClient(context);
- },
- }))();
- }
-
-
- render();
|