| 123456789101112131415 |
- /* eslint-disable no-console */
- // 请勿删除
- 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由%cFantastic-admin%c驱动', copyright_sub_style, copyright_main_style, copyright_sub_style, '\nhttps://fantastic-admin.hurui.me')
- }
- else {
- console.info('%cPowered by%cFantastic-admin', copyright_sub_style, copyright_main_style, '\nhttps://fantastic-admin.hurui.me')
- }
- }
- export {}
|