3 Star 0 Fork 0

张兵兵/uhome-file-system-h52

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.98 KB
一键复制 编辑 原始数据 按行查看 历史
liujun 提交于 2021-09-01 16:03 . 修改项目名
const path = require('path')
module.exports = {
// eslint-loader 是否在保存的时候检查
publicPath: `${process.env.VUE_APP_PUBLICPATH}`,
lintOnSave: false,
chainWebpack: (config) => {
config.module
.rule('css')
.test(/\.css$/)
.oneOf('vue')
.resourceQuery(/\?vue/)
.use('px2rem')
.loader('px2rem-loader')
.options({
remUnit: 75,
})
config.plugin('html').tap((args) => {
args[0].title = '证照管理系统H5'
return args
})
},
configureWebpack: (config) => {
config.resolve = {
// 配置解析别名
extensions: ['.js', '.json', '.vue'], // 自动添加文件名后缀
alias: {
'@': path.resolve(__dirname, './src'),
'@c': path.resolve(__dirname, './src/components'),
},
}
},
// 生产环境是否生成 sourceMap 文件
productionSourceMap: false,
// css相关配置
css: {
// 是否使用css分离插件 ExtractTextPlugin
extract: true,
// 开启 CSS source maps?
sourceMap: false,
// css预设器配置项
loaderOptions: {
postcss: {
plugins: [
require('postcss-pxtorem')({
rootValue: 37.5, // 换算的基数
selectorBlackList: ['weui', 'mu'], // 忽略转换正则匹配项
propList: ['*'],
}),
],
},
},
},
devServer: {
open: false, // 编译完成是否打开网页
host: 'localhost', // 指定使用地址,默认localhost,0.0.0.0代表可以被外界访问
port: 8080, // 访问端口
https: false, // 编译失败时刷新页面
hot: true, // 开启热加载
hotOnly: false,
proxy: {
[process.env.VUE_APP_API]: {
target: process.env.VUE_APP_DEV_TARGET, //API服务器的地址
changeOrigin: true,
pathRewrite: {
[`^${process.env.VUE_APP_API}`]: [process.env.VUE_APP_TARGET_API],
},
},
// http://www.web-jshtml.cn/api/vue3 /api/getCode
},
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bing-bing-zhang/uhome-file-system-h52.git
git@gitee.com:bing-bing-zhang/uhome-file-system-h52.git
bing-bing-zhang
uhome-file-system-h52
uhome-file-system-h52
master

搜索帮助