diff --git a/docker-compose.yml b/docker-compose.yml index 124452f..6881212 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -79,7 +79,7 @@ services: redis: condition: service_healthy healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:8000/docs"] + test: ["CMD", "curl", "-f", "http://localhost:8000/health"] interval: 30s timeout: 10s retries: 3 diff --git a/frontend/vite.config.js b/frontend/vite.config.js index 242744c..34f902a 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -5,6 +5,9 @@ import path from 'path' // https://vitejs.dev/config/ export default defineConfig({ plugins: [react()], + build: { + target: 'es2015', + }, resolve: { alias: { '@': path.resolve(__dirname, './src'),