fix: Add axios and use npm install
Some checks failed
Deploy to Production / deploy (push) Failing after 0s
Test / backend-test (push) Failing after 0s
Test / frontend-test (push) Failing after 0s

This commit is contained in:
fullsizemalt 2025-12-09 11:06:17 -08:00
parent 0e4a73f7f0
commit 1225e00321
2 changed files with 4 additions and 3 deletions

View file

@ -6,7 +6,7 @@ WORKDIR /app
COPY package*.json ./
# Install dependencies
RUN npm ci
RUN npm install
# Copy source
COPY . .

View file

@ -22,7 +22,8 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^7.10.1",
"tailwind-merge": "^3.4.0"
"tailwind-merge": "^3.4.0",
"axios": "^1.6.2"
},
"devDependencies": {
"@types/react": "^18.2.43",