8 lines
99 B
Bash
Executable File
8 lines
99 B
Bash
Executable File
#!/bin/bash
|
|
# 启动前端服务
|
|
|
|
echo "启动前端服务..."
|
|
cd frontend
|
|
npm install
|
|
npm run dev
|