https://www.cnblogs.com/tandaxia/p/8810648.html
com+shift+G /usr/local
location / {
root /Users/chenliangfeng/Desktop/贤晟/EqichengV2/Miezz.Eqicheng.Sys/wwwroot; #文件地址
index index.html index.htm; # 文件主目录
proxy_pass https://v2.xsxxjs.com:444; # 后端接口 IP:port 切换代理
}
实习的时候用cors 后来用vue的自带功能 现在用nginx完美解决 顺便学了nginx 学了四个小时 其实用过一遍还是很好用的
首先查看本地的ip地址
ifconfig mac是这样看的
然后将 在同一个网络下 将localhost换成ip
比如:我这次看的是92.168.1.15
原先 http://localhost:8008/#/login 转换 http://192.168.1.15:8008/#/login
首先安装postcss-pxtorem npm install postcss-pxtorem -D
在postcss.config.js下增加配置
module.exports = {
plugins: {
'autoprefixer': {
browsers: ['Android >= 4.0', 'iOS >= 8']
},
'postcss-pxtorem': {
rootValue: 37.5, // 苹果6为原稿 如果是苹果5就32
propList: ['*']
}
}
}
接着安装 cnpm i lib-flexible --save-dev 使用 import 'lib-flexible/flexible'
来源:CSDN
作者:qq_38674970
链接:https://blog.csdn.net/qq_38674970/article/details/103873464