initial state

This commit is contained in:
2026-05-14 18:21:47 +02:00
commit f601558662
33 changed files with 4799 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
optimizeDeps: {
include: ['@mui/icons-material', '@mui/material', '@emotion/styled'],
},
server: {
proxy: {
'/api': 'http://sprawozdania.docker', // proxy do Symfony w dev
},
},
})