settings.js 989 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. module.exports = {
  2. // urls: `http://192.168.101.245:8099`,
  3. // urls: `http://10.90.90.53:8099`,
  4. // 10.90.90.52 192.168.101.245
  5. // 10.90.90.53
  6. // http://192.168.9.240:5010
  7. urls:`http://192.168.1.66:8056`,
  8. /**
  9. * 侧边栏主题 深色主题theme-dark,浅色主题theme-light
  10. */
  11. sideTheme: 'theme-light',
  12. /**
  13. * 是否系统布局配置
  14. */
  15. showSettings: false,
  16. /**
  17. * 是否显示顶部导航
  18. */
  19. topNav: false,
  20. /**
  21. * 是否显示 tagsView
  22. */
  23. tagsView: false,
  24. /**
  25. * 是否固定头部
  26. */
  27. fixedHeader: false,
  28. /**
  29. * 是否显示logo
  30. */
  31. sidebarLogo: false,
  32. /**
  33. * 是否显示动态标题
  34. */
  35. dynamicTitle: false,
  36. /**
  37. * @type {string | array} 'production' | ['production', 'development']
  38. * @description Need show err logs component.
  39. * The default is only used in the production env
  40. * If you want to also use it in dev, you can pass ['production', 'development']
  41. */
  42. errorLog: 'production'
  43. }