uni-halo/config/token.config.template.js
2024-11-29 16:16:20 +08:00

17 lines
340 B
JavaScript
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.

/** 配置后台管理员token */
const HaloTokenConfig = Object.freeze({
/** 基础请求域名你的Halo博客基础域名 */
BASE_API: "https://demo.halo.run",
// BASE_API: "https://blog.xiaoxiaomo.cn",
/** 管理员token */
systemToken: ``,
/** 匿名用户token */
anonymousToken: ``
})
export default HaloTokenConfig;