.umirc.ts 261 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 import { defineConfig } from "umi"; export default defineConfig({ routes: [ { path: "/", redirect: "/index" }, { path: "/index", component: "index" }, ], npmClient: 'pnpm', publicPath: '/InsSet/', history: { type: 'hash' }, hash: true, });