web/.env

27 lines
1.1 KiB
Bash
Raw Blame History

This file contains ambiguous Unicode characters!

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.

# =====================================================================================
# 应用配置
# =====================================================================================
# 网站标题
VITE_TITLE = 绝弹管理后台
# 网站副标题
VITE_SUBTITLE = 快速开发web应用的模板工具
# 接口前缀 说明:参见 axios 的 baseURL
VITE_API = http://127.0.0.1:3030/
# =====================================================================================
# 开发设置
# =====================================================================================
# 主机
VITE_HOST = 0.0.0.0
# 端口
VITE_PORT = 3020
# 代理地址
VITE_PROXY = /api
# API文档 说明:需返回符合 OPENAPI 规范的json内容
VITE_OPENAPI = http://127.0.0.1:3030/openapi.json
# =====================================================================================
# 构建设置
# =====================================================================================
# 文件后缀 说明设为dev时会优先加载index.dev.vue文件否则回退至index.vue文件
VITE_EXTENSION = dev