Skip to content

Commit

Permalink
isElectronが要らないことに気づいた
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba committed Jan 2, 2025
1 parent 1842ae6 commit 0c2a952
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/domain/defaultEngine/envEngineInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,12 @@ type EnvEngineInfoType = z.infer<typeof envEngineInfoSchema>;

/** .envからデフォルトエンジン情報を読み込む */
export function loadEnvEngineInfos(): EnvEngineInfoType[] {
// electronのときはプロセスの環境変数を優先する
// プロセスの環境変数を優先する
// NOTE: electronテスト環境を切り替えるため。テスト環境が1本化されればimport.meta.envを使う。
const defaultEngineInfosEnv =
((isElectron && process?.env?.VITE_DEFAULT_ENGINE_INFOS) || import.meta.env.VITE_DEFAULT_ENGINE_INFOS) ?? "[]";
process?.env?.VITE_DEFAULT_ENGINE_INFOS ??
import.meta.env.VITE_DEFAULT_ENGINE_INFOS ??
"[]";

// FIXME: 「.envを書き換えてください」というログを出したい
// NOTE: domainディレクトリなのでログを出す方法がなく、Errorオプションのcauseを用いてもelectron-logがcauseのログを出してくれない
Expand Down

0 comments on commit 0c2a952

Please sign in to comment.