12345678910111213141516171819202122232425 |
- import { defineConfig } from '@umijs/max';
- import routes from './routes';
- export default defineConfig({
- dva: {},
- antd: {},
- access: {
-
- },
- model: {},
- initialState: {
- name: ''
- },
- request: {},
- layout: {
- title: '菊城人才网',
- logo: '/images/logo_1.jpg',
- token: {
- colorPrimary: '#4FBE70'
- },
- },
- routes: routes,
- hash: true,
- npmClient: 'npm',
- });
|