2026-05-26 19:30:46 -05:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
|
import { VitePWA } from 'vite-plugin-pwa'
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [
|
|
|
|
|
react(),
|
|
|
|
|
VitePWA({
|
|
|
|
|
registerType: 'autoUpdate',
|
|
|
|
|
includeAssets: ['favicon.ico', 'apple-touch-icon.png'],
|
|
|
|
|
manifest: {
|
|
|
|
|
name: 'Black 7',
|
|
|
|
|
short_name: 'Black 7',
|
|
|
|
|
description: 'Scoring app for Last Panther',
|
2026-05-28 22:11:26 -05:00
|
|
|
theme_color: '#a8d5e8',
|
|
|
|
|
background_color: '#a8d5e8',
|
2026-05-26 19:30:46 -05:00
|
|
|
display: 'standalone',
|
2026-05-28 22:11:26 -05:00
|
|
|
start_url: '/',
|
2026-05-26 19:30:46 -05:00
|
|
|
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: 'any maskable',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
}),
|
|
|
|
|
],
|
|
|
|
|
})
|