dev login fixes
Deploy / deploy-dev (push) Successful in 1m55s
Deploy / deploy-prod (push) Has been skipped

This commit is contained in:
blaisadmin
2026-06-05 22:12:19 -04:00
parent 480bbe8fc7
commit ae8c4326b5
3 changed files with 16 additions and 2 deletions
+1 -1
View File
@@ -160,7 +160,7 @@ services:
dockerfile: Dockerfile.dev
container_name: flockpal-frontend
environment:
VITE_API_BASE_URL: ${VITE_API_BASE_URL:-http://localhost:5000/api}
VITE_API_BASE_URL: ${VITE_API_BASE_URL:-/api}
depends_on:
- backend
ports:
+9 -1
View File
@@ -2212,17 +2212,25 @@ label {
}
.page-tabs {
grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
grid-auto-flow: column;
grid-auto-columns: minmax(5.5rem, max-content);
grid-template-columns: none;
gap: 0.4rem;
min-width: 0;
overflow-x: auto;
padding-bottom: 0.1rem;
scrollbar-width: thin;
}
.page-tab {
min-height: 42px;
min-width: 5.5rem;
padding: 0.55rem 0.65rem;
border-radius: 14px;
text-align: center;
font-size: 0.92rem;
font-weight: 700;
white-space: nowrap;
}
.side-nav .secondary-button {
+6
View File
@@ -5,5 +5,11 @@ export default defineConfig({
plugins: [react()],
server: {
port: 3000,
proxy: {
'/api': {
target: 'http://backend:5000',
changeOrigin: true,
},
},
},
});