Files
api-client/src/config/index.js

8 lines
269 B
Vue
Raw Normal View History

2025-03-28 18:28:06 +08:00
/**
* @description 3个子配置通用配置|主题配置|网络配置导出
*/
const setting = require('./setting.config')
const theme = require('./theme.config')
const network = require('./net.config')
module.exports = Object.assign({}, setting, theme, network)