四零语境后端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
252 B

1 month ago
  1. const projectName = import.meta.env.VITE_GLOB_APP_TITLE;
  2. export function warn(message: string) {
  3. console.warn(`[${projectName} warn]:${message}`);
  4. }
  5. export function error(message: string) {
  6. throw new Error(`[${projectName} error]:${message}`);
  7. }