import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' import { VitePWA } from 'vite-plugin-pwa' // https://vite.dev/config/ export default defineConfig({ plugins: [ react(), VitePWA({ registerType: 'autoUpdate', includeAssets: ['favicon.ico', 'steelpaint_icon.png', 'apple-touch-icon.png'], manifest: { name: 'SteelPaint - Gestão de Pintura Industrial', short_name: 'SteelPaint', description: 'Sistema de Gestão de Pintura Industrial e Controle de Qualidade', theme_color: '#0f172a', background_color: '#0f172a', display: 'standalone', orientation: 'portrait', scope: '/', start_url: '/', 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' } ] } }) ], server: { proxy: { '/api': { target: 'http://localhost:3000', changeOrigin: true, secure: false, }, '/uploads': { target: 'http://localhost:3000', changeOrigin: true, secure: false, }, }, }, })