You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
681 B
23 lines
681 B
// | ------------------------------------------------------------
|
|
// | @版本: version 0.1
|
|
// | @创建人: 【Nie-x7129】
|
|
// | @E-mail: x71291@outlook.com
|
|
// | @所在项目: P01CentralControl
|
|
// | @文件描述: dev.conf.js -
|
|
// | @创建时间: 2024-01-13 21:15
|
|
// | @更新时间: 2024-01-13 21:15
|
|
// | @修改记录:
|
|
// | -*-*-*- (时间--修改人--修改说明) -*-*-*-
|
|
// | =
|
|
// | ------------------------------------------------------------
|
|
import proConf from '#root/config/pro.conf.js';
|
|
const config = {
|
|
devUser: 'expressgy'
|
|
};
|
|
Object.keys(proConf).forEach(item => {
|
|
if(!config[item]){
|
|
config[item] = proConf[item];
|
|
}
|
|
});
|
|
|
|
export default config;
|
|
|