yylAdminWeb/.env.production.domain

22 lines
547 B
Plaintext
Raw Permalink 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.

# 前后端部署到同一域名的环境变量文件
# 重命名成 .env.production.local 后
# 运行打包命令 cnpm run build:prod
# 把生成的 admin 文件夹复制到 yylAdmin/public 下
# 浏览器访问yylAdmin项目 你的域名/admin 即可
# 正式环境
ENV = 'production'
# 接口baseURL
VUE_APP_BASE_URL = ''
# publicPath
VUE_APP_PUBLICPATH = '/admin/'
# outputDir
VUE_APP_OUTPUTDIR = 'admin'
# token名称
VUE_APP_TOKEN_NAME = 'AdminToken'
# token方式header请求头部param请求参数
VUE_APP_TOKEN_TYPE = 'header'