1 Star 0 Fork 1

DingYan1/每时每刻

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
DingYan1 提交于 2020-09-23 10:04 . msmk
const autoprefixer = require('autoprefixer');
const pxtorem = require('postcss-pxtorem');
module.exports = {
devServer: {
open: true, //是否自动弹出浏览器页面
host: "localhost", //表示启动的时候使用的域名,默认可以不写,则是使用localhost和本机IP
port: '8080', // 设置端口号
https: false, //是否使用https协议
hotOnly: false, //是否开启热更新
proxy: {
'/api': {
target: 'https://test.365msmk.com/api/app/', //API服务器的地址
changeOrigin: true, // 是否跨域,虚拟的站点需要更管origin
pathRewrite: { //重写路径 比如'/api/aaa/ccc'重写为'/aaa/ccc'
'^/api': ''
}
},
},
},
css: {
loaderOptions: {
postcss: {
plugins: [
autoprefixer({
overrideBrowserslist: ['Android >= 4.0', 'iOS >= 7']
}),
pxtorem({
rootValue: 37.5,
propList: ['*'],
unitPrecision: 3,
minPixelValue: 2
})
]
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/dingyan1/at-all-times.git
git@gitee.com:dingyan1/at-all-times.git
dingyan1
at-all-times
每时每刻
master

搜索帮助