chore: sync local changes to Gitea
This commit is contained in:
@@ -1,6 +1,49 @@
|
||||
import { defineConfig } from "vite";
|
||||
import react from "@vitejs/plugin-react";
|
||||
import { VitePWA } from "vite-plugin-pwa";
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
plugins: [
|
||||
react(),
|
||||
VitePWA({
|
||||
registerType: "autoUpdate",
|
||||
includeAssets: ["public/favicon.ico", "public/logo.png"],
|
||||
manifest: {
|
||||
name: "GitHub Star Manager",
|
||||
short_name: "Star Manager",
|
||||
description: "Manage GitHub starred repositories with Star Lists.",
|
||||
theme_color: "#2563eb",
|
||||
background_color: "#f8fafc",
|
||||
display: "standalone",
|
||||
orientation: "any",
|
||||
scope: "/",
|
||||
start_url: "/",
|
||||
icons: [
|
||||
{
|
||||
src: "/logo.png",
|
||||
sizes: "192x192",
|
||||
type: "image/png",
|
||||
purpose: "any",
|
||||
},
|
||||
{
|
||||
src: "/logo.png",
|
||||
sizes: "512x512",
|
||||
type: "image/png",
|
||||
purpose: "any",
|
||||
},
|
||||
{
|
||||
src: "/logo.png",
|
||||
sizes: "512x512",
|
||||
type: "image/png",
|
||||
purpose: "maskable",
|
||||
},
|
||||
],
|
||||
},
|
||||
workbox: {
|
||||
globPatterns: ["**/*.{js,css,html,ico,png,svg,woff2,woff}"],
|
||||
// logo.png is large after bundling; default Workbox limit is 2 MiB
|
||||
maximumFileSizeToCacheInBytes: 6 * 1024 * 1024,
|
||||
},
|
||||
}),
|
||||
],
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user