优化项目配置并更新文档

- 更新 README 文档,增加项目介绍和说明
- 优化 Vite 配置,支持多页面入口和路径别名
- 移除未使用的 MyProject.vue 组件
- 更新项目依赖包版本
- 添加 Tailwind CSS 相关配置
- 优化编辑器布局和样式
- 添加 UI 组件库支持
- 更新 Logo 和加载动画
- 修复国际化配置

Made-with: Cursor
This commit is contained in:
lyf
2026-03-13 23:24:54 +08:00
parent cded246736
commit 8402f1bc2d
48 changed files with 3072 additions and 1038 deletions

View File

@@ -39,7 +39,7 @@ public class Astral3DScenesController {
public Result<?> post(@RequestBody Astral3DScenes lb3dEditorScenes) {
long count = astral3DScenesService.count();
if (count > 2000) {
return Result.error("共享项目场景数量已达上限2000个不允许新增");
return Result.error("项目场景数量已达上限2000个不允许新增");
}
if (astral3DScenesService.save(lb3dEditorScenes)) {
return Result.success(lb3dEditorScenes);