mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 08:23:55 +00:00
de9a7a87fd
* refactor(project structure): UI * refactor(project structure): extract utilities * refactor(project structure): remove unused * refactor(project structure): electron * refactor(project structure): server refactor: migrate to vitest refactor: monorepo config * refactor: extract application menu * refactor: exit process * refactor: extract tray menu * chore: electron build * Added Seconds in studio clock #282 --------- Co-authored-by: Fabian Posenau <fabian@fphome.de> --------- Co-authored-by: Fabian Posenau <fabian.p99@gmx.de> Co-authored-by: Fabian Posenau <fabian@fphome.de>
19 lines
376 B
JavaScript
19 lines
376 B
JavaScript
module.exports = {
|
|
appIni: {
|
|
shutdownCode: 99,
|
|
},
|
|
reactAppUrl: {
|
|
development: 'http://localhost:3000/editor',
|
|
production: 'http://localhost:4001/editor',
|
|
},
|
|
externalUrls: {
|
|
help: 'https://cpvalente.gitbook.io/ontime/',
|
|
},
|
|
server: {
|
|
pathToEntrypoint: '../extraResources/server/index.cjs'
|
|
},
|
|
assets: {
|
|
pathToAssets: './assets/',
|
|
}
|
|
};
|