meeting/.umirc.js

25 lines
699 B
JavaScript
Raw Normal View History

2023-06-29 18:02:58 +08:00
import { defineConfig } from "umi";
export default defineConfig({
routes: [
{ path: '/', component: 'homePage' },
{ path: "/organization", component: "organization" },
{ path: "/information", component: "information" },
{ path: "/information/detail/:id", component: "information/detail" },
{ path: "/contact", component: "information/detail" },
{ path: "/register", component: "information/detail" },
{ path: "/docs", component: "docs" },
],
npmClient: 'pnpm',
alias: {
img: '/public/image'
},
proxy: {
'/api': {
'target': 'https://testgetway.trustie.net/',
'changeOrigin': true,
// 'pathRewrite': { '^/api' : '' },
},
},
});