mirror of
https://gitee.com/WeBank/fes.js.git
synced 2024-12-05 13:17:42 +08:00
39 lines
868 B
JavaScript
39 lines
868 B
JavaScript
// fes.config.js 只负责管理 cli 相关的配置
|
|
import pxtoviewport from 'postcss-px-to-viewport';
|
|
|
|
|
|
export default {
|
|
define: {
|
|
// __VUE_OPTIONS_API__: true,
|
|
// __VUE_PROD_DEVTOOLS__: false
|
|
},
|
|
html: {
|
|
options: {
|
|
title: '海贼王'
|
|
}
|
|
},
|
|
imageMinimizer: {
|
|
disable: false
|
|
},
|
|
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: 8080
|
|
}
|
|
};
|