您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516
  1. module.exports = {
  2. /** Server info */
  3. host: 'localhost',
  4. port: 3001,
  5. db: 'test',
  6. dbPort: 3306,
  7. dbDialect: 'mysql', // even for mariadb
  8. /** URL preceding endpoints */
  9. apiBase: 'api',
  10. /** Uncomment for cross-origin */
  11. corsSupported: false
  12. }