mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-05 15:33:59 +00:00
16 lines
331 B
JavaScript
16 lines
331 B
JavaScript
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/',
|
|
},
|
|
};
|