import { defineConfig } from "vite"; import react from "@vitejs/plugin-react"; import { VitePWA } from "vite-plugin-pwa"; export default defineConfig({ plugins: [ react(), VitePWA({ registerType: "autoUpdate", workbox: { globPatterns: ["**/*.{js,css,html,ico,png,svg}"], runtimeCaching: [ { urlPattern: /^https:\/\/api\./, handler: "NetworkFirst", options: { cacheName: "api-cache", expiration: { maxEntries: 100, maxAgeSeconds: 60 * 60 * 24 * 7, // 7 days }, }, }, ], }, manifest: { name: "Cunkebao", short_name: "Cunkebao", description: "Cunkebao Mobile App", theme_color: "#ffffff", background_color: "#ffffff", display: "standalone", orientation: "portrait", scope: "/", start_url: "/", icons: [ { src: "favicon.ico", sizes: "64x64 32x32 24x24 16x16", type: "image/x-icon", }, { src: "logo.png", sizes: "192x192", type: "image/png", purpose: "any maskable", }, { src: "logo.png", sizes: "512x512", type: "image/png", purpose: "any maskable", }, ], }, }), ], });