Closed cbinzer closed 11 months ago
Thanks for logging this. It's likely that I forgot this use case. I'll take a look later this week.
@cbinzer, do you mind sharing your dev.ts
? If it looks like this:
#!/usr/bin/env -S deno run -A --watch=static/,routes/
import dev from "$fresh/dev.ts";
await dev(import.meta.url, "./main.ts");
please try changing it to this:
#!/usr/bin/env -S deno run -A --watch=static/,routes/
import dev from "$fresh/dev.ts";
import config from "./fresh.config.ts";
await dev(import.meta.url, "./main.ts", config);
Hi @deer,
indeed, you're right. I forgot to set the config in dev.ts. Now it works. Thank you very much 🙏
Hi,
I noticed that islands that are provided over a plugin are not pre-buildable. When I run
deno run -A --unstable dev.ts build
and start the app withdeno run -A --unstable main.ts
I get a not found error in the browser for the island. I don't see the island in the _fresh directory either.Regards Christian