mirror of
https://gitee.com/WeBank/fes.js.git
synced 2024-12-02 19:58:18 +08:00
17 lines
379 B
JavaScript
17 lines
379 B
JavaScript
// fes.config.js 只负责管理 cli 相关的配置
|
|
import pxtoviewport from '@ttou/postcss-px-to-viewport';
|
|
import { defineBuildConfig } from '@fesjs/fes';
|
|
|
|
export default defineBuildConfig({
|
|
proxy: {
|
|
'/v2': {
|
|
'target': 'https://api.douban.com/',
|
|
'changeOrigin': true,
|
|
}
|
|
},
|
|
request: {
|
|
dataField: 'result'
|
|
},
|
|
});
|
|
|