├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ ├── Publish.yml │ └── close-default-title-issue.yml ├── .gitignore ├── .prettierrc ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── auto-imports.d.ts ├── components.d.ts ├── eslint.config.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public ├── tauri.svg └── vite.svg ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── capabilities │ └── default.json ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── icon.icns │ ├── icon.ico │ └── icon.png ├── src │ ├── commands.rs │ ├── config.rs │ ├── download_manager.rs │ ├── errors.rs │ ├── events.rs │ ├── export.rs │ ├── extensions.rs │ ├── jm_client.rs │ ├── lib.rs │ ├── logger.rs │ ├── main.rs │ ├── responses │ │ ├── get_chapter_resp_data.rs │ │ ├── get_comic_resp_data.rs │ │ ├── get_favorite_resp_data.rs │ │ ├── get_user_profile_resp_data.rs │ │ ├── mod.rs │ │ ├── search_resp.rs │ │ └── toggle_favorite_resp_data.rs │ ├── types │ │ ├── chapter_info.rs │ │ ├── comic.rs │ │ ├── comic_info.rs │ │ ├── download_format.rs │ │ ├── favorite_sort.rs │ │ ├── get_favorite_result.rs │ │ ├── log_level.rs │ │ ├── mod.rs │ │ ├── proxy_mode.rs │ │ ├── search_result.rs │ │ └── search_sort.rs │ └── utils.rs └── tauri.conf.json ├── src ├── App.vue ├── AppContent.vue ├── assets │ └── vue.svg ├── bindings.ts ├── components │ ├── AboutDialog.vue │ ├── ComicCard.vue │ ├── CompletedProgresses.vue │ ├── DownloadedComicCard.vue │ ├── FloatLabelInput.vue │ ├── LogViewer.vue │ ├── LoginDialog.vue │ ├── SettingsDialog.vue │ └── UncompletedProgresses.vue ├── main.ts ├── panes │ ├── ChapterPane.vue │ ├── DownloadedPane.vue │ ├── DownloadingPane.vue │ ├── FavoritePane.vue │ └── SearchPane.vue ├── store.ts ├── types.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── uno.config.ts └── vite.config.ts /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/Publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/.github/workflows/Publish.yml -------------------------------------------------------------------------------- /.github/workflows/close-default-title-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/.github/workflows/close-default-title-issue.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/README.md -------------------------------------------------------------------------------- /auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/auto-imports.d.ts -------------------------------------------------------------------------------- /components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/components.d.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/tauri.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/public/tauri.svg -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/.gitignore -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/capabilities/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/capabilities/default.json -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/src/commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/commands.rs -------------------------------------------------------------------------------- /src-tauri/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/config.rs -------------------------------------------------------------------------------- /src-tauri/src/download_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/download_manager.rs -------------------------------------------------------------------------------- /src-tauri/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/errors.rs -------------------------------------------------------------------------------- /src-tauri/src/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/events.rs -------------------------------------------------------------------------------- /src-tauri/src/export.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/export.rs -------------------------------------------------------------------------------- /src-tauri/src/extensions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/extensions.rs -------------------------------------------------------------------------------- /src-tauri/src/jm_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/jm_client.rs -------------------------------------------------------------------------------- /src-tauri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/lib.rs -------------------------------------------------------------------------------- /src-tauri/src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/logger.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/src/responses/get_chapter_resp_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/responses/get_chapter_resp_data.rs -------------------------------------------------------------------------------- /src-tauri/src/responses/get_comic_resp_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/responses/get_comic_resp_data.rs -------------------------------------------------------------------------------- /src-tauri/src/responses/get_favorite_resp_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/responses/get_favorite_resp_data.rs -------------------------------------------------------------------------------- /src-tauri/src/responses/get_user_profile_resp_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/responses/get_user_profile_resp_data.rs -------------------------------------------------------------------------------- /src-tauri/src/responses/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/responses/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/responses/search_resp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/responses/search_resp.rs -------------------------------------------------------------------------------- /src-tauri/src/responses/toggle_favorite_resp_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/responses/toggle_favorite_resp_data.rs -------------------------------------------------------------------------------- /src-tauri/src/types/chapter_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/types/chapter_info.rs -------------------------------------------------------------------------------- /src-tauri/src/types/comic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/types/comic.rs -------------------------------------------------------------------------------- /src-tauri/src/types/comic_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/types/comic_info.rs -------------------------------------------------------------------------------- /src-tauri/src/types/download_format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/types/download_format.rs -------------------------------------------------------------------------------- /src-tauri/src/types/favorite_sort.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/types/favorite_sort.rs -------------------------------------------------------------------------------- /src-tauri/src/types/get_favorite_result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/types/get_favorite_result.rs -------------------------------------------------------------------------------- /src-tauri/src/types/log_level.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/types/log_level.rs -------------------------------------------------------------------------------- /src-tauri/src/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/types/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/types/proxy_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/types/proxy_mode.rs -------------------------------------------------------------------------------- /src-tauri/src/types/search_result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/types/search_result.rs -------------------------------------------------------------------------------- /src-tauri/src/types/search_sort.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/types/search_sort.rs -------------------------------------------------------------------------------- /src-tauri/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/src/utils.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/AppContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/AppContent.vue -------------------------------------------------------------------------------- /src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/assets/vue.svg -------------------------------------------------------------------------------- /src/bindings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/bindings.ts -------------------------------------------------------------------------------- /src/components/AboutDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/components/AboutDialog.vue -------------------------------------------------------------------------------- /src/components/ComicCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/components/ComicCard.vue -------------------------------------------------------------------------------- /src/components/CompletedProgresses.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/components/CompletedProgresses.vue -------------------------------------------------------------------------------- /src/components/DownloadedComicCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/components/DownloadedComicCard.vue -------------------------------------------------------------------------------- /src/components/FloatLabelInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/components/FloatLabelInput.vue -------------------------------------------------------------------------------- /src/components/LogViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/components/LogViewer.vue -------------------------------------------------------------------------------- /src/components/LoginDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/components/LoginDialog.vue -------------------------------------------------------------------------------- /src/components/SettingsDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/components/SettingsDialog.vue -------------------------------------------------------------------------------- /src/components/UncompletedProgresses.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/components/UncompletedProgresses.vue -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/panes/ChapterPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/panes/ChapterPane.vue -------------------------------------------------------------------------------- /src/panes/DownloadedPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/panes/DownloadedPane.vue -------------------------------------------------------------------------------- /src/panes/DownloadingPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/panes/DownloadingPane.vue -------------------------------------------------------------------------------- /src/panes/FavoritePane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/panes/FavoritePane.vue -------------------------------------------------------------------------------- /src/panes/SearchPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/panes/SearchPane.vue -------------------------------------------------------------------------------- /src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/store.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/uno.config.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuhuan/jmcomic-downloader/HEAD/vite.config.ts --------------------------------------------------------------------------------