no message

This commit is contained in:
小陌 2023-08-24 17:24:16 +08:00
parent c37d82c9b2
commit 1c44ea4ef2

View File

@ -56,5 +56,8 @@ const DEFAULT_CONFIG = {
} }
// 如果生产模式就合并动态的APP_CONFIG // 如果生产模式就合并动态的APP_CONFIG
// public/config.js // public/config.js
Object.assign(DEFAULT_CONFIG, APP_CONFIG) if (typeof APP_CONFIG !== 'undefined' && APP_CONFIG !== null) {
Object.assign(DEFAULT_CONFIG, APP_CONFIG);
}
export default DEFAULT_CONFIG export default DEFAULT_CONFIG