Compare commits
No commits in common. "1-模板约定" and "master" have entirely different histories.
@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="VcsDirectoryMappings">
|
|
||||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
14
.umirc.ts
Normal file
14
.umirc.ts
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import { defineConfig } from 'umi';
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
nodeModulesTransform: {
|
||||||
|
type: 'none',
|
||||||
|
},
|
||||||
|
routes: [
|
||||||
|
{ path: '/', component: '@/pages/index' },
|
||||||
|
],
|
||||||
|
fastRefresh: {},
|
||||||
|
history: {
|
||||||
|
type: 'hash'
|
||||||
|
},
|
||||||
|
});
|
@ -1,23 +0,0 @@
|
|||||||
import { defineConfig } from 'umi';
|
|
||||||
|
|
||||||
export default defineConfig({
|
|
||||||
nodeModulesTransform: {
|
|
||||||
type: 'none', // all 慢 兼容好
|
|
||||||
},
|
|
||||||
routes: [
|
|
||||||
{ path: '/', component: '@/pages/index' },
|
|
||||||
{ path: '/about', component: '@/pages/about' },
|
|
||||||
],
|
|
||||||
fastRefresh: {},
|
|
||||||
history: {
|
|
||||||
type: 'browser'
|
|
||||||
},
|
|
||||||
// 后续设置的配置
|
|
||||||
devServer: {
|
|
||||||
port: 3000, // 启动端口
|
|
||||||
},
|
|
||||||
title: 'UmiV3',// 网站标题
|
|
||||||
favicon: '/favicon.ico',// 网站图标
|
|
||||||
dynamicImport: {}, // 按需加载
|
|
||||||
mountElementId: 'root', // 指定 reactapp 渲染到元素的根元素 id
|
|
||||||
});
|
|
Binary file not shown.
Before Width: | Height: | Size: 216 KiB |
@ -1,4 +0,0 @@
|
|||||||
body, html {
|
|
||||||
width: 100%;
|
|
||||||
min-height: 100vh;
|
|
||||||
}
|
|
@ -1,11 +0,0 @@
|
|||||||
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
|
|
||||||
<link rel="stylesheet" href="/umi.css" />
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div id="root"></div>
|
|
||||||
<script src="/umi.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Loading…
Reference in New Issue
Block a user