mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-22 02:07:43 +00:00
15 lines
314 B
TypeScript
15 lines
314 B
TypeScript
import { GameEnv } from "./Config";
|
|
import { DefaultServerConfig } from "./DefaultConfig";
|
|
|
|
export const prodConfig = new (class extends DefaultServerConfig {
|
|
numWorkers(): number {
|
|
return 20;
|
|
}
|
|
env(): GameEnv {
|
|
return GameEnv.Prod;
|
|
}
|
|
jwtAudience(): string {
|
|
return "openfront.io";
|
|
}
|
|
})();
|