You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# 复制为 .env.local 后生效;.env.local 已加入 .gitignore, 适合放本机个性化配置。
# 注意:只有 VITE_ 开头的变量会注入浏览器; FRONTEND_BUILD_OUT_DIR 只供 vite.config.ts 读取。
#
# 管理端生产构建输出目录;可写相对 frontend/ 的路径或绝对路径。
# 不设置时默认输出到 frontend/dist/admin, 避免误写到某个固定 backend 仓库。
# 例: FRONTEND_BUILD_OUT_DIR=../backend/public/admin
# FRONTEND_BUILD_OUT_DIR=
#
# 开发时代理目标(仅 vite.config 读取)。默认 http://127.0.0.1:8002
# LARAVEL_DEV_URL=http://127.0.0.1:8002
#
# 留空则开发时走当前站点同源 + Vite 代理 /api( 推荐)
# VITE_API_BASE=
# 管理端离线 Mock( 任意非空账号/密码即可登录;赛事列表/赛道/报名表与评审表版本均在浏览器内存中,刷新会丢)
# 要与真实 Laravel 联调请设为 false, 并重启 npm run dev
VITE_ADMIN_USE_MOCK = false
# 与后端 SMS_RESEND_INTERVAL_SECONDS 保持一致时,验证码按钮倒计时秒数(改后需重启 npm run dev)
# VITE_SMS_RESEND_INTERVAL_SECONDS=60