hi-ucs/front/src/config/index.js

10 lines
431 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @description 3个子配置通用配置|主题配置|网络配置建议在当前目录下修改config.js修改配置会覆盖默认配置也可以直接修改默认配置
*/
//默认配置
const { setting, theme, network } = require('./default')
//自定义配置
const config = require('./config')
//导出配置(以自定义配置为主)
module.exports = Object.assign({}, setting, theme, network, config)