mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
18 lines
344 B
TypeScript
18 lines
344 B
TypeScript
import { defineConfig } from 'umi';
|
|
|
|
export default defineConfig({
|
|
hash: true,
|
|
layout: false,
|
|
nodeModulesTransform: {
|
|
type: 'none',
|
|
},
|
|
fastRefresh: {},
|
|
favicon: 'http://demo.sc.chinaz.com/Files/pic/iconsico/8002/g5.ico',
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://127.0.0.1:5678/',
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
});
|