Cormick
Cormick
There's a good chance upgrading to `@evidence-dev/[email protected]` will fix this
Requires custom adapter for general solution. Could also be done (with extra user input, but works on dev mode) by allowing users to specify a subquery to [generate the pages...
@ItsMeBrianD I updated it to remove `+layout.server.js` like I mentioned in our call earlier - originally wasn't going to, but it makes the hosting process much smoother, and I don't...
Appears to kick in at length 66720, repro'ing with ```js const q = `SELECT list_extract([${Array.from({ length: 66_688 }, () => 1).join("")}], 0) as q`; ``` Edit: Actually the number seems...
Could probably be done by making a `+layout.js` for each generated `+page.svelte` and re-export the frontmatter in there
Thanks for the PR! One concern: seems like queries with string-enclosed "comments" are also caught here, which could be an issue if it's used as a delimiter or such in...
fixed by #1640
Some profiling suggests a major cause is large files in dependencies taking up a lot of time in a vite function called `ssrTransformScript` (~4.1s). Main perpetrators:    There's...
Whoops, updated
Yeah seems like that helps move the heavy bits to the start of the dev server instead of later in, but the end result is the same