Skip to content

Commit

Permalink
🚑 just fix port
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultleouay committed Aug 5, 2024
1 parent 9960e05 commit cc7220c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/server/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ app.route("/v1", api);
app.route("/", checkerRoute);

const isDev = process.env.NODE_ENV === "development";
const port = isDev ? 3001 : 3000;
const port = 3000;

if (isDev) showRoutes(app, { verbose: true, colorize: true });

Expand Down

0 comments on commit cc7220c

Please sign in to comment.