36 lines
749 B
Bash
36 lines
749 B
Bash
BASE_API='http://127.0.0.1:25565'
|
||
NODE_ENV='development'
|
||
|
||
# 远程服务
|
||
REMOTE_PORT=3000
|
||
REMOTE_API='/api/v1/'
|
||
# 线上接口地址
|
||
REMOTE_API_URL='http://api.frame.sass.hiluker.cn'
|
||
# 开发接口地址
|
||
# REMOTE_API_URL='http://127.0.0.1:8989'
|
||
REMOTE_SERVER=false
|
||
|
||
# 以下是配合geeker主题做的配置
|
||
# title
|
||
VITE_GLOB_APP_TITLE=Hi-Sass-Frame
|
||
|
||
# 本地环境
|
||
VITE_USER_NODE_ENV=development
|
||
|
||
# 公共基础路径
|
||
VITE_PUBLIC_PATH=/
|
||
|
||
# 路由模式(electron中只能用hash模式)
|
||
# Optional: hash | history
|
||
VITE_ROUTER_MODE=hash
|
||
|
||
# 打包时是否删除 console
|
||
VITE_DROP_CONSOLE=true
|
||
|
||
# 是否开启 VitePWA
|
||
VITE_PWA=false
|
||
|
||
# 开发环境接口地址
|
||
#VITE_API_URL=/api
|
||
VITE_API_URL=https://mock.mengxuegu.com/mock/629d727e6163854a32e8307e
|