mirror of
https://gitee.com/WeBank/fes.js.git
synced 2024-12-05 13:17:42 +08:00
97bfb30f30
* refactor: 优化 request 插件 * fix: errorHandler 的顺序控制问题'
38 lines
911 B
JavaScript
38 lines
911 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,
|
|
}
|
|
},
|
|
publicPath: '/',
|
|
html: {
|
|
title: '拉夫德鲁'
|
|
},
|
|
extraPostCSSPlugins: [
|
|
pxtoviewport({
|
|
unitToConvert: 'px',
|
|
viewportWidth: 375,
|
|
unitPrecision: 5,
|
|
propList: ['*'],
|
|
viewportUnit: 'vw',
|
|
fontViewportUnit: 'vw',
|
|
selectorBlackList: [],
|
|
minPixelValue: 1,
|
|
mediaQuery: false,
|
|
replace: true,
|
|
exclude: [],
|
|
landscape: false,
|
|
landscapeUnit: 'vw'
|
|
})
|
|
],
|
|
devServer: {
|
|
port: 8000
|
|
}
|
|
});
|
|
|