35 lines
928 B
TypeScript
35 lines
928 B
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',
|
|
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',
|
|
},
|
|
},
|
|
})
|