Skip to content

Commit

Permalink
Update env.d.ts (#1621)
Browse files Browse the repository at this point in the history
* Update env.d.ts

set START_SSR, START_ISLANDS, START_DEV_OVERLAY to boolean to match runtime

* Create twelve-carrots-brush.md

---------

Co-authored-by: Ryan Carniato <[email protected]>
  • Loading branch information
huseeiin and ryansolid authored Sep 25, 2024
1 parent 7ae221b commit d719c6c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/twelve-carrots-brush.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@solidjs/start": patch
---

Update env.d.ts
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 d719c6c

Please sign in to comment.