import { Config } from "./index"; import defaultConfig = require("./default"); // FirebaseのNODE_ENVはproductionのため、このファイルが使われる const ProductionConfig: Config = { ...defaultConfig, }; // 踏み台モードの場合はここを有効にする // delete ProductionConfig.app.akashic.apiKey; // ProductionConfig.app.akashic.baseUrl = "https://shinonomekazan-auth-sapi.coe.nicovideo.jp/v1.0"; ProductionConfig.app.scrapMember.openIdAuthParams["openid.realm"] = "https://puzzle-castle.play.realdgame.jp/"; ProductionConfig.app.scrapMember.openIdAuthParams["openid.return_to"] = "https://puzzle-castle.play.realdgame.jp/member_check.html"; export = ProductionConfig;