Remove vite-plugin-pwa from dev dependencies (#7762)

chore/upgrade-to-gradle-9.1
Ryan Wang 2025-09-21 21:32:27 +08:00 committed by GitHub
parent 6bc81a9866
commit b1127e3c28
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 115 additions and 1916 deletions

View File

@ -169,7 +169,6 @@
"vite-plugin-dts": "^4.5.4",
"vite-plugin-externals": "^0.6.2",
"vite-plugin-html": "^3.2.2",
"vite-plugin-pwa": "^0.20.0",
"vite-plugin-static-copy": "^1.0.6",
"vitest": "^3.2.4",
"vue-tsc": "^2.2.10"

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,6 @@ import GzipPlugin from "rollup-plugin-gzip";
import Icons from "unplugin-icons/vite";
import { fileURLToPath } from "url";
import { defineConfig, type Plugin } from "vite";
import { VitePWA } from "vite-plugin-pwa";
import { setupLibraryExternal } from "./library-external";
interface Options {
@ -34,15 +33,6 @@ export const sharedPlugins = [
},
},
}),
VitePWA({
manifest: {
name: "Halo",
short_name: "Halo",
description: "Web Client For Halo",
theme_color: "#fff",
},
disable: true,
}),
];
export function createViteConfig(options: Options) {