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', 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.png', sizes: '192x192', type: 'image/png' }, { src: '/icon-512.png', sizes: '512x512', type: 'image/png' }, ], }, }), ], server: { proxy: { '/api': 'http://localhost:6001', '/images': 'http://localhost:6001', }, }, })