.umirc.ts 261 Bytes
import { defineConfig } from "umi";

export default defineConfig({
  routes: [
    { path: "/", redirect: "/index" },
    { path: "/index", component: "index" },
  ],
  npmClient: 'pnpm',
  publicPath: '/InsSet/',
  history: { type: 'hash' },
  hash: true,
});