60 lines
1.9 KiB
TypeScript
60 lines
1.9 KiB
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
import { VitePWA } from 'vite-plugin-pwa'
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
react(),
|
|
tailwindcss(),
|
|
VitePWA({
|
|
registerType: 'autoUpdate',
|
|
workbox: {
|
|
globPatterns: ['**/*.{js,css,html,ico,png,svg,webp,woff2}'],
|
|
runtimeCaching: [
|
|
{
|
|
urlPattern: /\/api\/shopping/,
|
|
handler: 'NetworkFirst',
|
|
options: { cacheName: 'shopping-api', expiration: { maxEntries: 10, maxAgeSeconds: 86400 } },
|
|
},
|
|
{
|
|
urlPattern: /\/api\/recipes/,
|
|
handler: 'StaleWhileRevalidate',
|
|
options: { cacheName: 'recipes-api', expiration: { maxEntries: 50, maxAgeSeconds: 86400 } },
|
|
},
|
|
{
|
|
urlPattern: /\/api\/categories/,
|
|
handler: 'CacheFirst',
|
|
options: { cacheName: 'categories-api', expiration: { maxEntries: 10, maxAgeSeconds: 604800 } },
|
|
},
|
|
{
|
|
urlPattern: /\/images\//,
|
|
handler: 'CacheFirst',
|
|
options: { cacheName: 'recipe-images', expiration: { maxEntries: 100, maxAgeSeconds: 2592000 } },
|
|
},
|
|
],
|
|
},
|
|
manifest: {
|
|
name: 'Luna Recipes',
|
|
short_name: 'Luna',
|
|
description: 'Deine persönliche Rezeptsammlung',
|
|
theme_color: '#C4737E',
|
|
background_color: '#FBF8F5',
|
|
display: 'standalone',
|
|
orientation: 'portrait',
|
|
start_url: '/',
|
|
icons: [
|
|
{ src: '/icon-192.svg', sizes: '192x192', type: 'image/svg+xml' },
|
|
{ src: '/icon-512.svg', sizes: '512x512', type: 'image/svg+xml', purpose: 'any maskable' },
|
|
],
|
|
},
|
|
}),
|
|
],
|
|
server: {
|
|
proxy: {
|
|
'/api': 'http://localhost:6001',
|
|
'/images': 'http://localhost:6001',
|
|
},
|
|
},
|
|
})
|