You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
517 B
20 lines
517 B
// ** 本文件是config.js的默认数据 (请勿修改本文件中的内容)
|
|
// ** 如需修改配置请移步到根目录的config.js文件
|
|
export default {
|
|
|
|
// 系统名称
|
|
name: "萤火商城2.0",
|
|
|
|
/**
|
|
* 后端api地址 (必填; 斜杠/结尾; 请确保能访问)
|
|
* 例如: http://www.你的域名.com/index.php?s=/api/
|
|
*/
|
|
apiUrl: "./index.php?s=/api/",
|
|
|
|
/**
|
|
* 是否启用商城设置缓存
|
|
* 正式运营时启用, 将减少用户端重复请求
|
|
*/
|
|
enabledSettingCache: false,
|
|
|
|
}
|
|
|