mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-21 12:00:44 +00:00
15 lines
364 B
TypeScript
15 lines
364 B
TypeScript
import { GameEnv } from "./Config";
|
|
import { DefaultConfig, DefaultServerConfig } from "./DefaultConfig";
|
|
|
|
export const preprodConfig = new (class extends DefaultServerConfig {
|
|
env(): GameEnv {
|
|
return GameEnv.Preprod;
|
|
}
|
|
discordRedirectURI(): string {
|
|
return "https://openfront.dev/auth/callback";
|
|
}
|
|
numWorkers(): number {
|
|
return 3;
|
|
}
|
|
})();
|