vue-vben-admin/src/utils/log.ts
2020-10-21 21:44:57 +08:00

5 lines
151 B
TypeScript

const projectName = import.meta.env.VITE_GLOB_APP_TITLE;
export function warn(message: string) {
console.warn(`[${projectName} warn]:${message}`);
}