Skip to content

Commit

Permalink
Update env.d.ts
Browse files Browse the repository at this point in the history
set START_SSR, START_ISLANDS, START_DEV_OVERLAY to boolean to match runtime
  • Loading branch information
huseeiin committed Sep 5, 2024
1 parent 7ae221b commit b7d2438
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/start/env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ interface ImportMetaEnv extends Record<`VITE_${string}`, any>, SolidStartMetaEnv
}

interface SolidStartMetaEnv {
START_SSR: string;
START_ISLANDS: string;
START_DEV_OVERLAY: string;
START_SSR: boolean;
START_ISLANDS: boolean;
START_DEV_OVERLAY: boolean;
SERVER_BASE_URL: string;
}

0 comments on commit b7d2438

Please sign in to comment.