- 从 Pexels 下载建筑/景观/设备/装修四张主题图存到 public/img/majors/ - 不再依赖外部 CDN,离线/弱网也能正常显示 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| public/img/majors | ||
| src | ||
| .gitignore | ||
| README.md | ||
| index.html | ||
| package-lock.json | ||
| package.json | ||
| postcss.config.js | ||
| tailwind.config.js | ||
| vite.config.js | ||
README.md
frontend-h5
H5 材料浏览端。
开发
npm install
npm run dev # http://localhost:5174/m/
生产
npm run build # 输出到 dist/
Nginx 挂载示例:
location /m/ {
alias /path/to/frontend-h5/dist/;
try_files $uri $uri/ /m/index.html;
}
API 仍走主站 /api/。