web/.env

28 lines
1.2 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应用的模板工具
# API接口前缀
VITE_API_PREFIX = http://127.0.0.1:3030/
# API文档地址 备注:需为符合 OPENAPI 规范的json文件
VITE_API_SWAGGER = http://127.0.0.1:3030/openapi.json
# =====================================================================================
# 开发设置
# =====================================================================================
# API代理地址(开发环境)
VITE_API_PROXY_URL = /api
# 端口号(开发环境)
VITE_PORT = 3020
# 主机地址(开发环境)
VITE_HOST = 0.0.0.0
# =====================================================================================
# 构建设置
# =====================================================================================
# 构建时加载的文件后缀.
# 例如设置为todo则会首先尝试加载index.todo.vue文件不存在时再加载index.vue文件
VITE_EXTENSION = todo