django-vue3-admin-web/.env.development
2025-10-22 22:13:19 +08:00

18 lines
473 B
Plaintext
Raw 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.

# 开发环境配置
NODE_ENV = 'development'
# 开发环境接口地址
VITE_API_URL = 'http://127.0.0.1:8000'
# 开发环境端口号
VITE_PORT = 8080
# 开发环境路由历史模式Hash模式传"hash"、HTML5模式传"h5"、Hash模式带base参数传"hash,base参数"、HTML5模式带base参数传"h5,base参数"
VITE_ROUTER_HISTORY = 'hash'
# 开发环境读取配置文件路径
VITE_PUBLIC_PATH = './'
# 开发环境打包路径
VITE_DIST_PATH = './dist'