mac nginx+ 手机查看本地网站+移动端自动rem

一笑奈何 提交于 2020-01-28 03:22:02

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'

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!