Files
asset-homepage/README.md
2026-01-27 17:26:30 +08:00

42 lines
798 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Asset Homepage
这是资产管理平台的前台页面项目。
## 技术栈
- Next.js 15.1.4
- React 19.0.0
- TypeScript 5
- Tailwind CSS 3.4.17
## 开发
首先,安装依赖:
```bash
npm install
```
然后,运行开发服务器:
```bash
npm run dev
```
在浏览器中打开 [http://localhost:3002](http://localhost:3002) 查看结果。
注意:此项目运行在端口 3002以避免与后台项目端口 3000冲突。
## 项目结构
- `app/` - Next.js App Router 页面和布局
- `components/` - React 组件
- `public/` - 静态资源文件
## 与后台项目的关系
- 后台项目:`asset-dashboard-next` (端口 3000)
- 前台项目:`asset-homepage` (端口 3002)
两个项目使用相同的依赖版本和配置,确保开发体验的一致性。