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

20 lines
302 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"
},
targets: {
ios: 10, android: 5,
},
proxy
});