Files
Your Name 32efff1670 dev
2026-04-16 13:05:07 +08:00

25 lines
474 B
Bash
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.
#!/usr/bin/env bash
set -euo pipefail
PROJECT_ROOT="/opt/domaincheck/domain-web"
cd "$PROJECT_ROOT"
if [ ! -f ".env.production" ]; then
echo "缺少 .env.production请先参考 .env.production.example 创建。"
exit 1
fi
if ! command -v npm >/dev/null 2>&1; then
echo "未找到 npm请先安装 Node.js。"
exit 1
fi
echo "安装依赖..."
npm install
echo "构建生产包..."
npm run build
echo "构建完成dist 目录位于: $PROJECT_ROOT/dist"