mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-22 05:13:48 +00:00
15 lines
342 B
TypeScript
15 lines
342 B
TypeScript
import { GameEnv } from "./Config";
|
|
import { DefaultServerConfig } from "./DefaultConfig";
|
|
|
|
export const prodConfig = new (class extends DefaultServerConfig {
|
|
numWorkers(): number {
|
|
return 6;
|
|
}
|
|
env(): GameEnv {
|
|
return GameEnv.Prod;
|
|
}
|
|
discordRedirectURI(): string {
|
|
return "https://openfront.io/auth/callback";
|
|
}
|
|
})();
|