Files
OpenFrontIO/src/core/configuration/ProdConfig.ts
T
Scott Anderson 0a40bcebf0 Enable the sort-imports eslint rule (#1849)
## Description:

Enable the `sort-imports` eslint rule.

Fixes #1784

## Please complete the following:

- [x] I have added screenshots for all UI updates
- [x] I process any text displayed to the user through translateText()
and I've added it to the en.json file
- [x] I have added relevant tests to the test directory
- [x] I confirm I have thoroughly tested these changes and take full
responsibility for any bugs introduced
2025-08-17 20:53:44 -04:00

15 lines
314 B
TypeScript

import { DefaultServerConfig } from "./DefaultConfig";
import { GameEnv } from "./Config";
export const prodConfig = new (class extends DefaultServerConfig {
numWorkers(): number {
return 20;
}
env(): GameEnv {
return GameEnv.Prod;
}
jwtAudience(): string {
return "openfront.io";
}
})();