mirror of
https://github.com/TangSengDaoDao/TangSengDaoDaoManager
synced 2025-06-03 23:58:10 +00:00
13 lines
463 B
TypeScript
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/'
|
|
);
|
|
}
|