mirror of
https://github.com/soconnor0919/beenvoice.git
synced 2025-12-13 01:24:44 -05:00
- Upgrade Next.js and related packages for improved performance and security - Refactor invoice-related pages to streamline navigation and enhance user experience - Consolidate invoice editing and viewing functionality into a single page - Remove deprecated edit page and implement a new view page for invoices - Update links and routing for consistency across the dashboard
13 lines
337 B
TypeScript
13 lines
337 B
TypeScript
import type { Config } from "drizzle-kit";
|
|
// Use a relative import; path alias "~" may not resolve in CLI context
|
|
import { env } from "./src/env.js";
|
|
|
|
export default {
|
|
schema: "./src/server/db/schema.ts",
|
|
dialect: "postgresql",
|
|
dbCredentials: {
|
|
url: env.DATABASE_URL,
|
|
},
|
|
tablesFilter: ["beenvoice_*"],
|
|
} satisfies Config;
|