本地运行vue打包项目

tech2023-06-15  105

1. 使用 http-server-spa

全局安装 http-server-spa yarn global add http-server-spa // 或者 npm i -g http-server-spa 运行 // http-server-spa <directory> <fallback> <port> // 运行 dist 为目录,index.html 启动文件,端口 8080 http-server-spa ./dist/ index.html 8080

ps: ./dist/ 后面有个空格

浏览器输入 localhost:8080 http-server也可以,差不多的方法,想用可以自行百度

2. 使用nginx

下载nginx 官网下载地址解压, 打开conf文件夹,找到nginx.conf文件 修改端口号 和 文件路径 启动nginx 浏览器输入 localhost:8088 还有express本地服务器的方法, 大同小异,百度一下, 略略略…
最新回复(0)