export const alertVariants = [
{
type: "note",
icon: '',
title: "注意",
},
{
type: "tip",
icon: '',
title: "提示",
},
{
type: "important",
icon: '',
title: "重要",
},
{
type: "warning",
icon: '',
title: "警告",
},
{
type: "caution",
icon: '',
title: "小心",
},
]
export const STORAGE_KEY = {
LOGIN: "web-isloggedin",
HTML: "web-html",
CSS: "web-css",
JS: "web-js",
TAB: "web-tab",
FONTSIZE: "web-fontsize",
}
export const ADMIN_URL = import.meta.env.PUBLIC_ADMIN_URL
export const BASE_URL = import.meta.env.PUBLIC_BASE_URL
export enum TASK_TYPE {
Tutorial = "tutorial",
Challenge = "challenge",
}
export const TASK_LABEL = {
[TASK_TYPE.Tutorial]: "教程",
[TASK_TYPE.Challenge]: "挑战",
} as const