This commit is contained in:
2026-04-25 12:38:32 +02:00
commit 39c900a41b
25 changed files with 4226 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
import { fileURLToPath } from 'url'
// https://vite.dev/config/
export default defineConfig({
plugins: [
tailwindcss(),
react()
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
server: {
proxy: {
'/api': {
target: 'https://testowe.zikor.pl',
changeOrigin: true,
secure: false,
},
},
},
})