mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-09-18 10:19:58 +08:00
8 lines
269 B
Vue
8 lines
269 B
Vue
/**
|
||
* @description 3个子配置,通用配置|主题配置|网络配置导出
|
||
*/
|
||
const setting = require('./setting.config')
|
||
const theme = require('./theme.config')
|
||
const network = require('./net.config')
|
||
module.exports = Object.assign({}, setting, theme, network)
|