| 123456789101112131415161718 |
- const config = {
- /** Server info */
- host: 'localhost',
- port: 3001,
-
- db: 'test',
- dbPort: 3306,
- dbDialect: 'mysql', // even for mariadb
-
- /** URL preceding endpoints */
- apiBase: 'api',
-
- /** Uncomment for cross-origin */
- corsSupported: false
- }
-
- export { config }
|