Cormick

Results 37 comments of 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...

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: ![image](https://github.com/evidence-dev/evidence/assets/61282104/7984b2c1-ce37-4bda-ab35-fc2814c1e773) ![image](https://github.com/evidence-dev/evidence/assets/61282104/567ddc08-2760-43eb-a42d-57573649e141) ![image](https://github.com/evidence-dev/evidence/assets/61282104/86c1c984-0a7e-4e32-ae13-b3adda46bbc3) 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