Initial commit

This commit is contained in:
admin
2025-12-09 14:37:41 +08:00
parent b8648c2861
commit 1384bb1d4a
7 changed files with 139 additions and 9 deletions

View File

@@ -52,9 +52,25 @@
4. 启动开发服务器:
```powershell
npm run dev
```
> **注意**: 如果你的 Node.js 版本 >= 17可能会遇到 OpenSSL 相关的错误。请在启动前设置环境变量。
* **Windows (PowerShell)**:
```powershell
$env:NODE_OPTIONS="--openssl-legacy-provider"
npm run dev
```
* **CMD**:
```cmd
set NODE_OPTIONS=--openssl-legacy-provider
npm run dev
```
* **Linux / macOS**:
```bash
export NODE_OPTIONS=--openssl-legacy-provider
npm run dev
```
5. 启动完成后,浏览器会自动打开 `http://localhost:9528` (或其他配置的端口)。