TangSengDaoDaoManager/src/utils/system-copyright.ts
2023-08-12 21:04:38 +08:00

13 lines
463 B
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;`;
console.info(
'%c由%c唐僧叨叨%c驱动',
copyright_sub_style,
copyright_main_style,
copyright_sub_style,
'\nhttps://tangsengdaodao.com/'
);
}