mirror of
https://gitee.com/WeBank/fes.js.git
synced 2024-12-03 20:27:37 +08:00
39 lines
889 B
JavaScript
39 lines
889 B
JavaScript
// fes.config.js 只负责管理 cli 相关的配置
|
|
import pxtoviewport from '@ttou/postcss-px-to-viewport';
|
|
|
|
|
|
export default {
|
|
define: {
|
|
// __VUE_OPTIONS_API__: true,
|
|
// __VUE_PROD_DEVTOOLS__: false
|
|
},
|
|
publicPath: '/',
|
|
request: {
|
|
base: '/ras-mas',
|
|
dataField: 'result'
|
|
},
|
|
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
|
|
}
|
|
};
|