Skip to content

Commit

Permalink
fix: properly setup vite proxy for development
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Sep 29, 2023
1 parent afead65 commit c1da746
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,16 @@ export default defineConfig({
target: 'http://localhost:8080',
changeOrigin: true,
secure: false
},
'/internal': {
target: 'http://localhost:8080',
changeOrigin: true,
secure: false
},
'/favicon.ico': {
target: 'http://localhost:8080',
changeOrigin: true,
secure: false
}
}
}
Expand Down

0 comments on commit c1da746

Please sign in to comment.