Создал контейнер

This commit is contained in:
2025-07-07 15:20:28 +03:00
parent 04ded483b0
commit 69650ac008
14 changed files with 833 additions and 3146 deletions

View File

@@ -3,5 +3,13 @@ import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
plugins: [react()],
server: {
proxy: {
'/api': {
target: 'http://localhost:3000',
changeOrigin: true,
},
},
},
})