use port 3000 in dev mode (#1065)

This commit is contained in:
Alex Christoffer Rasmussen
2024-06-11 13:37:10 +02:00
committed by GitHub
parent 657aed1244
commit 9d7b5568e4
+1 -1
View File
@@ -3,7 +3,7 @@ module.exports = {
shutdownCode: 99,
},
reactAppUrl: {
development: (port = 4001) => `http://localhost:${port}`,
development: (port = 3000) => `http://localhost:${port}`,
production: (port = 4001) => `http://localhost:${port}`,
},
server: {