leosmilence@163.com dca8ecfb67 添加使用说明文档 | пре 4 година | |
---|---|---|
Dowloads | пре 4 година | |
docs | пре 4 година | |
.gitignore | пре 4 година | |
README.md | пре 4 година | |
deploy.sh | пре 4 година | |
package.json | пре 4 година |
cnpm install
npm run dev // 开发调试
npm run build // 构建静态文件 /docs/.vuepress/dist 目录里的文件为构建后的静态目录文件
使用 npm run build 执行好压缩后的dist 文件进行部署
server {
listen 8081;
location / {
root /docs/.vuepress/dist;
try_files $uri $uri/ /index.html;
index index.html index.htm;
}
}