From 4809aa1d778283383615f90e6f0ec41799d347a1 Mon Sep 17 00:00:00 2001 From: binit2-1 Date: Tue, 12 May 2026 18:00:51 +0530 Subject: [PATCH] docs: remove dotenv call from Turso config --- .../docs/tutorials/drizzle-with-db/drizzle-with-turso.mdx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/content/docs/tutorials/drizzle-with-db/drizzle-with-turso.mdx b/src/content/docs/tutorials/drizzle-with-db/drizzle-with-turso.mdx index 5701f55c..2bb81471 100644 --- a/src/content/docs/tutorials/drizzle-with-db/drizzle-with-turso.mdx +++ b/src/content/docs/tutorials/drizzle-with-db/drizzle-with-turso.mdx @@ -144,11 +144,8 @@ export type SelectPost = typeof postsTable.$inferSelect; Create a `drizzle.config.ts` file in the root of your project and add the following content: ```typescript copy filename="drizzle.config.ts" -import { config } from 'dotenv'; import { defineConfig } from 'drizzle-kit'; -config({ path: '.env' }); - export default defineConfig({ schema: './src/db/schema.ts', out: './migrations',