/** * These are package global defaults. */ import type { Generated } from "kysely"; export type PrimaryFieldType = number | Generated; // biome-ignore lint/suspicious/noEmptyInterface: 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;