mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-08 17:03:53 +00:00
16 lines
334 B
JavaScript
16 lines
334 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/',
|
|
},
|
|
};
|