mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
21 lines
447 B
TypeScript
21 lines
447 B
TypeScript
/**
|
|
* These are package global defaults.
|
|
*/
|
|
import type { Generated } from "kysely";
|
|
|
|
export type PrimaryFieldType = number | Generated<number>;
|
|
|
|
// biome-ignore lint/suspicious/noEmptyInterface: <explanation>
|
|
export interface DB {}
|
|
|
|
export const config = {
|
|
server: {
|
|
default_port: 1337,
|
|
// resetted to root for now, bc bundling with vite
|
|
assets_path: "/"
|
|
},
|
|
data: {
|
|
default_primary_field: "id"
|
|
}
|
|
} as const;
|