Skip to content

Commit

Permalink
fix: frontend graphql endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
froid1911 committed Feb 13, 2024
1 parent 95cad8d commit f4860c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ FROM dependency-base AS production-base
COPY frontend /app/frontend
COPY api /app/api
WORKDIR /app/api
RUN npm ci
RUN yarn install --frozen-lockfile
WORKDIR /app/frontend

# Set env vars before build
Expand Down
2 changes: 1 addition & 1 deletion frontend/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default defineNuxtConfig({
'graphql-client': {
clients: {
default: {
host: `${API_BASE}/graphql`,
host: `${API_BASE}/drives`,
schema: '../api/src/generated/schema.graphql'
}
}
Expand Down

0 comments on commit f4860c4

Please sign in to comment.