Pwa init, and icons for pwa and web

This commit is contained in:
Bryan1029384756
2026-02-21 16:47:17 -06:00
parent dd313cf8c8
commit 40210672e3
27 changed files with 5132 additions and 203 deletions

View File

@@ -1,9 +1,70 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import { VitePWA } from 'vite-plugin-pwa';
import path from 'path';
export default defineConfig({
plugins: [react()],
plugins: [
react(),
VitePWA({
registerType: 'autoUpdate',
manifest: {
name: 'Discord Clone',
short_name: 'Discord Clone',
description: 'A Discord clone with voice, video, and text chat',
theme_color: '#1e1f22',
background_color: '#1e1f22',
display: 'standalone',
icons: [
{
src: 'pwa-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: 'pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
},
{
src: 'pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'maskable',
},
],
},
workbox: {
maximumFileSizeToCacheInBytes: 10 * 1024 * 1024,
globPatterns: ['**/*.{js,css,html,woff,woff2}'],
runtimeCaching: [
{
urlPattern: /\.(?:woff2?|ttf|otf|eot)$/,
handler: 'CacheFirst',
options: {
cacheName: 'fonts-cache',
expiration: {
maxEntries: 30,
maxAgeSeconds: 60 * 60 * 24 * 365,
},
},
},
{
urlPattern: /\.(?:png|jpg|jpeg|gif|webp|svg|ico)$/,
handler: 'CacheFirst',
options: {
cacheName: 'images-cache',
expiration: {
maxEntries: 100,
maxAgeSeconds: 60 * 60 * 24 * 30,
},
},
},
],
navigateFallback: 'index.html',
},
}),
],
base: '/',
envDir: '../../', // Pick up .env.local from project root (for VITE_CONVEX_URL)
resolve: {