Files
template-visual/config/config.js
2022-06-07 10:09:40 +08:00

28 lines
472 B
JavaScript

import {defineConfig} from 'umi';
import route from "./route";
import proxy from "./proxy";
export default defineConfig({
title: '浙江工商大学',
nodeModulesTransform: {
type: 'none',
},
publicPath: "./",
history: {
type: "hash"
},
hash: true,
routes: route,
proxy: proxy,
fastRefresh: {},
antd: {
dark: true, // 开启暗色主题
compact: true, // 开启紧凑主题
},
theme: {
"primary-color": "#01396C",
},
});