diff --git a/.gitignore b/.gitignore index 7b77a71..e040353 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ web/node_modules/ web/test-results/ .env .dev-credentials/ +.codegraph/ tmp/ diff --git a/web/vite.config.js b/web/vite.config.js index 036869b..aed24d5 100644 --- a/web/vite.config.js +++ b/web/vite.config.js @@ -5,6 +5,7 @@ import tailwindcss from "@tailwindcss/vite"; export default defineConfig({ plugins: [react(), tailwindcss()], server: { + host: true, port: 5173, strictPort: true, proxy: { "/api": "http://127.0.0.1:8082" },