├── .env.development ├── .env.production ├── .github └── workflows │ └── release.yml ├── .gitignore ├── README.md ├── index.html ├── package.json ├── public └── public │ ├── mitm.html │ └── sw.js ├── src ├── App.tsx ├── components │ ├── folder-tree.tsx │ ├── form-item.tsx │ ├── github-markdown.css │ ├── markdown.tsx │ ├── modal-input.tsx │ ├── overlay │ │ ├── index.tsx │ │ ├── site-settings │ │ │ ├── github.tsx │ │ │ ├── home-link.tsx │ │ │ ├── index.tsx │ │ │ ├── language.tsx │ │ │ ├── theme-toggle.tsx │ │ │ └── unfold.tsx │ │ └── to-top.tsx │ └── portal.tsx ├── hooks │ ├── useApi.ts │ ├── useChangeEffect.ts │ ├── useDebounce.ts │ ├── useDownPackage.ts │ ├── useEncrypt.ts │ ├── useFileUrl.ts │ ├── useFolderPath.ts │ ├── useLocalStorage.ts │ ├── usePathName.ts │ ├── useSyncCallback.ts │ ├── useTitle.ts │ └── useUnfold.ts ├── i18n │ ├── index.ts │ └── locales │ │ ├── en.ts │ │ ├── jp.ts │ │ └── zh.ts ├── main.tsx ├── pages │ ├── list │ │ ├── context.tsx │ │ ├── index.tsx │ │ ├── layout │ │ │ ├── error.tsx │ │ │ ├── file.tsx │ │ │ ├── files │ │ │ │ ├── card.tsx │ │ │ │ ├── contextmenu.tsx │ │ │ │ ├── grid.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── item.tsx │ │ │ │ ├── list.tsx │ │ │ │ ├── menus │ │ │ │ │ ├── copy.tsx │ │ │ │ │ ├── move.tsx │ │ │ │ │ ├── new-folder.tsx │ │ │ │ │ ├── refresh.tsx │ │ │ │ │ └── rename.tsx │ │ │ │ └── page.tsx │ │ │ ├── footer.tsx │ │ │ ├── header.tsx │ │ │ ├── index.tsx │ │ │ ├── nav.tsx │ │ │ ├── results │ │ │ │ ├── index.tsx │ │ │ │ └── result.tsx │ │ │ ├── search.tsx │ │ │ └── uploader.tsx │ │ ├── preview │ │ │ ├── audio.tsx │ │ │ ├── codeeditor.tsx │ │ │ ├── epub.tsx │ │ │ ├── image.tsx │ │ │ ├── ipa.tsx │ │ │ ├── markdown.tsx │ │ │ ├── office.tsx │ │ │ ├── pdf.tsx │ │ │ ├── plist.tsx │ │ │ └── video.tsx │ │ └── styles │ │ │ └── index.css │ └── manage │ │ ├── accounts.tsx │ │ ├── backup-restore.tsx │ │ ├── index.tsx │ │ ├── login.tsx │ │ ├── metas.tsx │ │ └── settings.tsx ├── theme.ts ├── utils │ ├── address.ts │ ├── admin.ts │ ├── aria2.ts │ ├── compatibility.ts │ ├── copy-clip.ts │ ├── date.ts │ ├── download-json.ts │ ├── event-bus.ts │ ├── file.ts │ ├── icon.ts │ ├── md5.ts │ ├── public.ts │ └── zip-stream.js └── vite-env.d.ts ├── tsconfig.json ├── vercel.json ├── vite.config.ts └── yarn.lock /.env.development: -------------------------------------------------------------------------------- 1 | VITE_SERVER_URL = "http://localhost:5244/" -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- 1 | VITE_SERVER_URL = "/" -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/package.json -------------------------------------------------------------------------------- /public/public/mitm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/public/public/mitm.html -------------------------------------------------------------------------------- /public/public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/public/public/sw.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/folder-tree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/components/folder-tree.tsx -------------------------------------------------------------------------------- /src/components/form-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/components/form-item.tsx -------------------------------------------------------------------------------- /src/components/github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/components/github-markdown.css -------------------------------------------------------------------------------- /src/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/components/markdown.tsx -------------------------------------------------------------------------------- /src/components/modal-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/components/modal-input.tsx -------------------------------------------------------------------------------- /src/components/overlay/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/components/overlay/index.tsx -------------------------------------------------------------------------------- /src/components/overlay/site-settings/github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/components/overlay/site-settings/github.tsx -------------------------------------------------------------------------------- /src/components/overlay/site-settings/home-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/components/overlay/site-settings/home-link.tsx -------------------------------------------------------------------------------- /src/components/overlay/site-settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/components/overlay/site-settings/index.tsx -------------------------------------------------------------------------------- /src/components/overlay/site-settings/language.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/components/overlay/site-settings/language.tsx -------------------------------------------------------------------------------- /src/components/overlay/site-settings/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/components/overlay/site-settings/theme-toggle.tsx -------------------------------------------------------------------------------- /src/components/overlay/site-settings/unfold.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/components/overlay/site-settings/unfold.tsx -------------------------------------------------------------------------------- /src/components/overlay/to-top.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/components/overlay/to-top.tsx -------------------------------------------------------------------------------- /src/components/portal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/components/portal.tsx -------------------------------------------------------------------------------- /src/hooks/useApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/hooks/useApi.ts -------------------------------------------------------------------------------- /src/hooks/useChangeEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/hooks/useChangeEffect.ts -------------------------------------------------------------------------------- /src/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/hooks/useDebounce.ts -------------------------------------------------------------------------------- /src/hooks/useDownPackage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/hooks/useDownPackage.ts -------------------------------------------------------------------------------- /src/hooks/useEncrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/hooks/useEncrypt.ts -------------------------------------------------------------------------------- /src/hooks/useFileUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/hooks/useFileUrl.ts -------------------------------------------------------------------------------- /src/hooks/useFolderPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/hooks/useFolderPath.ts -------------------------------------------------------------------------------- /src/hooks/useLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/hooks/useLocalStorage.ts -------------------------------------------------------------------------------- /src/hooks/usePathName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/hooks/usePathName.ts -------------------------------------------------------------------------------- /src/hooks/useSyncCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/hooks/useSyncCallback.ts -------------------------------------------------------------------------------- /src/hooks/useTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/hooks/useTitle.ts -------------------------------------------------------------------------------- /src/hooks/useUnfold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/hooks/useUnfold.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/i18n/locales/en.ts -------------------------------------------------------------------------------- /src/i18n/locales/jp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/i18n/locales/jp.ts -------------------------------------------------------------------------------- /src/i18n/locales/zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/i18n/locales/zh.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/list/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/context.tsx -------------------------------------------------------------------------------- /src/pages/list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/index.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/error.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/file.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/file.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/files/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/files/card.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/files/contextmenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/files/contextmenu.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/files/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/files/grid.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/files/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/files/index.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/files/item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/files/item.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/files/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/files/list.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/files/menus/copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/files/menus/copy.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/files/menus/move.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/files/menus/move.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/files/menus/new-folder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/files/menus/new-folder.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/files/menus/refresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/files/menus/refresh.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/files/menus/rename.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/files/menus/rename.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/files/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/files/page.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/footer.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/header.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/index.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/nav.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/results/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/results/index.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/results/result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/results/result.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/search.tsx -------------------------------------------------------------------------------- /src/pages/list/layout/uploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/layout/uploader.tsx -------------------------------------------------------------------------------- /src/pages/list/preview/audio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/preview/audio.tsx -------------------------------------------------------------------------------- /src/pages/list/preview/codeeditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/preview/codeeditor.tsx -------------------------------------------------------------------------------- /src/pages/list/preview/epub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/preview/epub.tsx -------------------------------------------------------------------------------- /src/pages/list/preview/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/preview/image.tsx -------------------------------------------------------------------------------- /src/pages/list/preview/ipa.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/preview/ipa.tsx -------------------------------------------------------------------------------- /src/pages/list/preview/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/preview/markdown.tsx -------------------------------------------------------------------------------- /src/pages/list/preview/office.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/preview/office.tsx -------------------------------------------------------------------------------- /src/pages/list/preview/pdf.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/preview/pdf.tsx -------------------------------------------------------------------------------- /src/pages/list/preview/plist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/preview/plist.tsx -------------------------------------------------------------------------------- /src/pages/list/preview/video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/preview/video.tsx -------------------------------------------------------------------------------- /src/pages/list/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/list/styles/index.css -------------------------------------------------------------------------------- /src/pages/manage/accounts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/manage/accounts.tsx -------------------------------------------------------------------------------- /src/pages/manage/backup-restore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/manage/backup-restore.tsx -------------------------------------------------------------------------------- /src/pages/manage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/manage/index.tsx -------------------------------------------------------------------------------- /src/pages/manage/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/manage/login.tsx -------------------------------------------------------------------------------- /src/pages/manage/metas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/manage/metas.tsx -------------------------------------------------------------------------------- /src/pages/manage/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/pages/manage/settings.tsx -------------------------------------------------------------------------------- /src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/theme.ts -------------------------------------------------------------------------------- /src/utils/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/utils/address.ts -------------------------------------------------------------------------------- /src/utils/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/utils/admin.ts -------------------------------------------------------------------------------- /src/utils/aria2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/utils/aria2.ts -------------------------------------------------------------------------------- /src/utils/compatibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/utils/compatibility.ts -------------------------------------------------------------------------------- /src/utils/copy-clip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/utils/copy-clip.ts -------------------------------------------------------------------------------- /src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/utils/date.ts -------------------------------------------------------------------------------- /src/utils/download-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/utils/download-json.ts -------------------------------------------------------------------------------- /src/utils/event-bus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/utils/event-bus.ts -------------------------------------------------------------------------------- /src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/utils/file.ts -------------------------------------------------------------------------------- /src/utils/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/utils/icon.ts -------------------------------------------------------------------------------- /src/utils/md5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/utils/md5.ts -------------------------------------------------------------------------------- /src/utils/public.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/utils/public.ts -------------------------------------------------------------------------------- /src/utils/zip-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/src/utils/zip-stream.js -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/web-v2/HEAD/yarn.lock --------------------------------------------------------------------------------