.1、电脑和手机连接到同一个WIFI
a.台式电脑和手机同时链接一个路由器,使用同一个wifi;
b.笔记本也可以直接启用一个wifi,手机链接笔记本wifi也可以;
2.查询本地IP地址
WIN+R,输入cmd回车,打开命令提示符,输入ipconfig,查看本地IPv4;
3.修改本地项目中IP地址
找到项目中config文件夹,下面index.js文件打开;
找到host: ‘localhost’, 改为上面本地IPv4地址\
没有的自己添加上去就好了
dev: {
host: '192.168.0.107', // 原为: hotst: 'localhost'
env: require('./dev.env'),
port: 8081,
autoOpenBrowser: true,
assetsSubDirectory: 'static',
assetsPublicPath: '/',
proxyTable: {},
// CSS Sourcemaps off by default because relative paths are "buggy"
// with this option, according to the CSS-Loader README
// (https://github.com/webpack/css-loader#sourcemaps)
// In our experience, they generally work as expected,
// just be aware of this issue when enabling this option.
cssSourceMap: false
}
4.制作二维码
草料二维码生成器https://cli.im/
5、npm run dev 重新启动项目
微信扫描生成的二维码即可预览效果