create-iking-admin
Version:
金合技术中台脚手架
16 lines (14 loc) • 789 B
text/typescript
// 请勿删除
if (import.meta.env.PROD) {
const copyright_common_style = 'font-size: 14px; margin-bottom: 2px; padding: 6px 8px; color: #fff;'
const copyright_main_style = `${copyright_common_style} background: #e24329;`
const copyright_sub_style = `${copyright_common_style} background: #707070;`
if ((navigator.language).toLowerCase() === 'zh-cn') {
console.info('%c由%cIKING-ADMIN%c驱动', copyright_sub_style, copyright_main_style, copyright_sub_style, '\nhttps://gitee.com/ikingtech')
}
else {
console.info('%cPowered by%cIKING-ADMIN', copyright_sub_style, copyright_main_style, '\nhttps://gitee.com/ikingtech')
console.info('%cPowered by%c金合信息科技股份有限公司版权所有,未经请保留此输出信息')
}
}
export {}