memorium/dev.ts

9 lines
193 B
TypeScript
Raw Permalink Normal View History

2023-07-26 13:47:01 +02:00
#!/usr/bin/env -S deno run -A --watch=static/,routes/
import dev from "$fresh/dev.ts";
2023-09-08 13:33:29 +02:00
import config from "./fresh.config.ts";
2023-07-26 13:47:01 +02:00
2023-09-08 13:33:29 +02:00
await dev(import.meta.url, "./main.ts", config);
2023-12-14 13:54:03 +01:00
Deno.exit(0);