3,安装依赖+运行和打包
<p>进入到你代码目录,输入以下几个指令</p>
<p><img src="https://www.showdoc.com.cn/server/api/attachment/visitFile?sign=2d7af60b9870b250c170abc4fa7b8e61&amp;file=file.png" alt="" /></p>
<p>设置官方镜像</p>
<pre><code>npm config set registry http://registry.npmmirror.com/</code></pre>
<p>安装依赖(如果 提示 gifsicle pre-build test failed 错误,打开你梯子软件翻墙一下或者修改hosts地址(也是翻墙方式之一),如果没报错,就不需要)
> 52.74.223.119 github.com
192.30.253.119 gist.github.com
54.169.195.247 api.github.com
185.199.111.153 assets-cdn.github.com
151.101.76.133 raw.githubusercontent.com</p>
<pre><code>npm i</code></pre>
<p>等它安装完,输入以下指令本地执行,本地跑一下,看看有没有问题</p>
<pre><code>npm run dev</code></pre>
<p>确认本地跑起来没问题,如果要停止, 按Ctrl+C 强制停止,继续打包</p>
<pre><code>npm run build-r</code></pre>
<p>等他报执行完后,在你的代码目录会看到一个dist文件,把这个上传到你服务器上去就行了,
<img src="https://www.showdoc.com.cn/server/api/attachment/visitFile?sign=310627295e6a298c6c2b795abebca532&amp;file=file.png" alt="" /></p>