Skip to content

Commit

Permalink
Fix: change default VITE_PORT to 3002 in vite.config.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
aelassas committed Jan 6, 2025
1 parent 062e30a commit 5408dc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default ({ mode }: { mode: string }) => {

server: {
host: '0.0.0.0',
port: Number.parseInt(process.env.VITE_PORT || '3006', 10),
port: Number.parseInt(process.env.VITE_PORT || '3002', 10),
},

build: {
Expand Down

0 comments on commit 5408dc1

Please sign in to comment.