安装指南
详细的安装步骤。
1. 克隆项目
bash
git clone https://gitee.com/jiangbyte/hei-admin-vue.git2. 安装依赖
bash
cd hei-admin-vue
npm install3. 配置环境变量
复制 .env.example 为 .env:
bash
cp .env.example .env修改 API 地址:
VITE_API_BASE_URL=http://localhost:80804. 启动项目
bash
npm run dev5. 构建生产版本
bash
npm run build6. 预览生产构建
bash
npm run preview