Files
template-mobile-umijs/config/config.js
2022-05-20 15:32:42 +08:00

17 lines
259 B
JavaScript

import {defineConfig} from 'umi';
import proxy from './proxy';
export default defineConfig({
publicPath: "./",
nodeModulesTransform: {
type: 'none',
},
fastRefresh: {},
hash: true,
title: false,
history: {
type: "hash"
},
proxy
});