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',