lilishop-ui/seller/src/config/index.js

34 lines
939 B
JavaScript
Raw Normal View History

2021-05-13 10:56:04 +08:00
export default {
/**
* @description 配置显示在浏览器标签的title
*/
2021-09-02 15:01:54 +08:00
title: "lilishop",
2021-05-13 10:56:04 +08:00
/**
* @description token在Cookie中存储的天数默认1天
*/
cookieExpires: 1,
/**
* @description 是否使用国际化默认为false
* 如果不使用则需要在路由中给需要在菜单中展示的路由设置meta: {title: 'xxx'}
* 用来在菜单中显示文字
*/
useI18n: true,
/**
* @description 高德web端申请的api key
*/
aMapKey: "b440952723253aa9fe483e698057bf7d",
/**
* @description 官网地址
*/
website: "https://www.pickmall.cn",
2021-05-13 10:56:04 +08:00
/**
* @description 需要加载的插件
*/
plugin: {
"error-store": {
showInHeader: true, // 设为false后不会在顶部显示错误日志徽标
developmentOff: true // 设为true后在开发环境不会收集错误信息方便开发中排查错误
}
}
};