log.ts 151 字节
Newer Older
V
vben 已提交
1 2 3 4
const projectName = import.meta.env.VITE_GLOB_APP_TITLE;
export function warn(message: string) {
  console.warn(`[${projectName} warn]:${message}`);
}