mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
21 lines
428 B
Plaintext
21 lines
428 B
Plaintext
---
|
|
import { Admin } from "bknd/ui";
|
|
import "bknd/dist/styles.css";
|
|
|
|
import { getApi } from "bknd/adapter/astro";
|
|
|
|
const api = await getApi(Astro, { mode: "dynamic" });
|
|
const user = api.getUser();
|
|
|
|
export const prerender = false;
|
|
---
|
|
|
|
<html>
|
|
<body>
|
|
<Admin
|
|
withProvider={{ user }}
|
|
config={{ basepath: "/admin", theme: "dark", logo_return_path: "/../" }}
|
|
client:only
|
|
/>
|
|
</body>
|
|
</html> |