Initial commit

This commit is contained in:
Slide Deck
2025-11-26 02:02:26 +08:00
commit ee1a23c320
31 changed files with 8673 additions and 0 deletions

12
src/modules/basename.ts Normal file
View File

@@ -0,0 +1,12 @@
// @ts-ignore
export const basename = BASE_NAME;
console.log(basename);
export const wrapBasename = (path: string) => {
if (basename) {
return `${basename}${path}/`;
} else {
return path;
}
}