# vue-html
**Repository Path**: pivotree/vue-html
## Basic Information
- **Project Name**: vue-html
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2023-12-02
- **Last Updated**: 2024-08-07
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
## 项目目的
使用cdn引入的方式开发项目,
1. 省去了编译打包的过程,便于调试开发,随时可以更改项目
2. 快速验证方案
## 使用
服务器运行nginx ,将项目地址代理出去,浏览器就能访问到相应界面了
```
# /etc/nginx/nginx.conf
server {
listene 80;
location /web/ {
alias /data/web/ ;
autoindex on;
}
}
```
```bash
# 运行nginx
nginx -t
nginx -s relaod
# 开发
sudo apt install python3-watchdog -y
python3 build.py &
```
## 开发计划
* 动态文件监听
* 添加路由
* 完成瀑布流