vue-vben-admin/src/utils/log.ts

5 lines
151 B
TypeScript
Raw Normal View History

2020-10-21 21:44:57 +08:00
const projectName = import.meta.env.VITE_GLOB_APP_TITLE;
export function warn(message: string) {
console.warn(`[${projectName} warn]:${message}`);
}