make application menu aware of what port should be used in link items (#890)

This commit is contained in:
2024-04-16 14:20:41 -05:00
committed by GitHub
parent 70c93a69fe
commit a8e9962eed
3 changed files with 22 additions and 19 deletions
+2 -2
View File
@@ -3,8 +3,8 @@ module.exports = {
shutdownCode: 99,
},
reactAppUrl: {
development: (port = 4001) => `http://localhost:${port}/editor`,
production: (port = 4001) => `http://localhost:${port}/editor`,
development: (port = 4001) => `http://localhost:${port}`,
production: (port = 4001) => `http://localhost:${port}`,
},
server: {
pathToEntrypoint: '../extraResources/server/index.cjs',