加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 619 Bytes
一键复制 编辑 原始数据 按行查看 历史
HWCloudSolution 提交于 2022-11-23 15:16 . 1130新增及页面优化
// 引入等比适配插件
const px2rem = require('postcss-px2rem')
// 配置基本大小
const postcss = px2rem({
// 基准大小 baseSize,需要和rem.js中相同
remUnit: 16
})
module.exports = {
// baseUrl: '/',
publicPath: '/',
outputDir: 'dist',
assetsDir: 'assets',
runtimeCompiler: true,
productionSourceMap: true,
parallel: true,
css: {
loaderOptions: {
postcss: {
plugins: [
postcss
]
}
}
},
devServer: {
host: 'localhost.huawei.com',
port: '80',
open: true
},
lintOnSave: false
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化