Reed von Redwitz
Reed von Redwitz
Thanks for creating this. I already wanted to do this, but sadly wasn't able to get it working. (Even with your hints here!) I tried using flowbite, after seeing this...
https://github.com/denoland/fresh/issues/1602#issuecomment-1671740190 seems to be the winning approach so far. I wanted to comment about a particular functional use case of this: SaaSKit. I'm currently a bit confused about what it's...
Check out https://github.com/search?q=repo%3Adenoland%2Ffresh%20deno_deployment_id&type=code Currently fresh just looks for this environment variable. Could you you do the same in your plugin?
Thanks, that makes sense. But FYI https://fresh.deno.dev/docs/concepts/deployment#docker. It's important to set that environment variable, if you're not running on deploy. Exposing the internal dev flag is probably more clear.
duplicate of #2296
Cool idea. I wrote a test like this: ```ts Deno.test("param with encoding", async () => { await withFakeServe("./tests/fixture/dev.ts", async (server) => { const doc = await server.getHtml(`/decode-params/Hello%20World`); assertEquals( doc.querySelector("body")?.textContent, "Hello...
It's interesting that `island in dynamic route test => ./tests/layouts_test.ts:163:6` consistently fails on windows and mac, and seems to be passing on linux.
@iuioiua, perhaps you want to close your old one and we can go from here? This time I've hit all the manifests via `deno task manifests` (which I don't think...
When I'm in `fresh/tests/fixture_layouts` and run `deno run -A main.ts` it always fails with: ``` error: Top-level await promise never resolved "./routes/dynamic/[tenant]/index.tsx": await import( ^ at (file:///Users/reed/code/denoland/fresh/tests/fixture_layouts/fresh.gen.ts:26:44) ``` but when...
I can only imagine this would be an issue if you're launching the program from within the source directory. If you're launching it like this: `deno run -A src/dev.ts` then...