diff --git a/nose/bin/apps.tsx b/nose/bin/apps.tsx new file mode 100644 index 0000000..1e5aafa --- /dev/null +++ b/nose/bin/apps.tsx @@ -0,0 +1,11 @@ +import { apps } from "@/webapp" + +export default function () { + const domain = "localhost" + let port = process.env.PORT || "3000" + port = port === "80" ? "" : `:${port}` + + return <> + {apps().map(app => <>{app}{" "})} + +} \ No newline at end of file