1234567891011121314151617181920212223242526272829303132 |
- 'use strict';
- module.exports = appInfo => {
-
- const config = exports = {
- baseUrl: 'http://106.15.121.64/server',
- };
-
- config.keys = appInfo.name + '_1586587199716_572';
-
- config.middleware = [];
-
- const userConfig = {
-
- };
- return {
- ...config,
- ...userConfig,
- };
- };
|