mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-06 17:36:42 +08:00
41 lines
1011 B
Plaintext
41 lines
1011 B
Plaintext
# 生产环境配置
|
||
ENV = 'testing'
|
||
NODE_ENV = 'testing'
|
||
BASE_URL = '/pc/'
|
||
|
||
# 管理系统/生产环境
|
||
VUE_APP_BASE_API = '/systemapi'
|
||
|
||
# BOE管理系统/开发环境
|
||
VUE_APP_BOE_BASE_API = '/uboeApi'
|
||
|
||
# 资源位的api
|
||
VUE_APP_CESOURCE_BASE_API = '/socialApi'
|
||
|
||
# 事件的api
|
||
VUE_APP_STAT_BASE_API = '/statApi'
|
||
|
||
# BOE系统网址
|
||
VUE_APP_BOE_WEB_URL = 'https://u-pre.boe.com'
|
||
|
||
# BOE 移动端url
|
||
VUE_APP_BOE_MOBILE_URL = 'https://u-pre.boe.com'
|
||
|
||
# File路径的基础url
|
||
VUE_APP_FILE_BASE_URL='https://u-pre.boe.com/upload'
|
||
|
||
# File路径的基础url的相对路径,加此项是为了不影响之前的路径配置
|
||
VUE_APP_FILE_RELATIVE_PATH = '/upload'
|
||
|
||
# 虚拟目录的变量,结尾的/在vue.config.js中添加
|
||
VUE_APP_PUBLIC_PATH='/pc'
|
||
VUE_APP_MANAGER_PATH='/manage'
|
||
VUE_APP_STUDENT_PATH='/fe-student'
|
||
VUE_APP_MANAGER_API_PATH='/manageApi'
|
||
|
||
# 登录地址
|
||
VUE_APP_LOGIN_URL='https://u-pre.boe.com/web/'
|
||
|
||
# scorm课件的播放url地址
|
||
VUE_APP_SCORM_URL = 'https://u-pre.boe.com/newscorm/scorm-player'
|