a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at d30f8e8d8a4d68d80b09c6b2a6787f74bcb99b4e 11 lines 324 B view raw
1import { defineConfig } from "drizzle-kit"; 2import { loadEnvConfig } from "@next/env"; 3loadEnvConfig(process.cwd()); 4export default defineConfig({ 5 dialect: "postgresql", // "mysql" | "sqlite" | "postgresql" 6 schema: "./src/schema/*", 7 out: "./drizzle", 8 dbCredentials: { 9 url: process.env.DB_URL as string, 10 }, 11});