plugins.config.template.js 519 B

123456789101112131415161718192021222324
  1. /** 插件相关配置 */
  2. const PluginsConfig = Object.freeze({
  3. // 友链提交配置
  4. autoSubmitLink: {
  5. // 可以考虑配置一个插件id,检测是否开启了友链提交插件(暂未使用)
  6. pluginId: "",
  7. // 是否开启(可能后台没有安装或未不启用插件)
  8. enabled: true,
  9. // 我的友链信息
  10. blogDetail: {
  11. // 博客名称
  12. name: "",
  13. // 博客地址
  14. url: "",
  15. // 博客logo
  16. logo: "",
  17. // 博客简介
  18. description: "",
  19. }
  20. }
  21. })
  22. export default PluginsConfig;