import { route } from "@/core/route.js"; import { routes as routeEpisode } from "./app-:id/routes.js"; import { html } from "lit"; export const path = "/episodes/" as const; export const routes = route( { path, async enter() { await import("./index.js"); return true; }, render(){ return html``; }, }, routeEpisode, );