This commit is contained in:
2026-03-09 13:22:45 +08:00
commit 3b392f4e83
300 changed files with 54217 additions and 0 deletions

16
.umirc.ts Normal file
View File

@@ -0,0 +1,16 @@
import { defineConfig } from 'umi';
export default defineConfig({
routes: [
{ path: '/', component: 'indexPage' },
{ path: '/casePage', component: 'casePage' },
{ path: '/docPage', component: 'docPage' },
{ path: '/sourcePage', component: 'sourcePage' },
{ path: '/aboutPage', component: 'aboutPage' },
],
title: '打印模版设计器',
npmClient: 'yarn',
base: '/web-wxp-print-portal',
publicPath: '/web-wxp-print-portal/',
outputPath: 'web-wxp-print-portal'
});