chore: support raw-loader

This commit is contained in:
Li Xin
2025-04-22 13:52:56 +08:00
parent e586f5b31d
commit dff003f743
4 changed files with 591 additions and 0 deletions

4
web/src/typings/md.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
declare module "*.md" {
const content: string;
export default content;
}