refactor: improve native menu links

This commit is contained in:
Carlos Valente
2024-10-03 20:58:38 +02:00
committed by Carlos Valente
parent f1cac8d1c4
commit 0a53018930
15 changed files with 385 additions and 228 deletions
+15
View File
@@ -0,0 +1,15 @@
module.exports = {
appIni: {
shutdownCode: 99,
},
reactAppUrl: {
development: (port = 3000) => `http://localhost:${port}`,
production: (port = 4001) => `http://localhost:${port}`,
},
server: {
pathToEntrypoint: '../../extraResources/server/index.cjs',
},
assets: {
pathToAssets: './assets/',
},
};