refactor(gencode): 升级代码生成模板对齐新组件架构

This commit is contained in:
zhangtao
2026-05-12 16:25:09 +08:00
parent 7e7733651f
commit d59aaedf35
15 changed files with 1475 additions and 748 deletions
+13 -4
View File
@@ -1,7 +1,16 @@
# 小程序静态文件目录
请将小程序 H5 构建产物放置于此目录。
请将小程序 H5 构建产物( dist 文件夹)放置于此目录。
构建后应包含:
- index.html
- static/ (或其他静态资源)
小程序 UniApp 的 H5 构建输出结构为 `dist/build/h5/`
最终目录结构应为:
```
docker/nginx/app/
└── dist/
└── build/
└── h5/
├── index.html
├── static/
└── ...
```