mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 08:06:00 +00:00
10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
import { adminPage, getServerSideProps } from "bknd/adapter/nextjs";
|
|
import "bknd/dist/styles.css";
|
|
|
|
export { getServerSideProps };
|
|
export default adminPage({
|
|
config: {
|
|
basepath: "/admin"
|
|
}
|
|
});
|