Error in Drizzle.studio

I'm having problems to get my drizzle studio up, one day it was working without any problem and the next day I started to get this problem, the versions I have are the following:
"drizzle-orm": "0.33.0",
"drizzle-kit": "^0.24.0",

My configuration is as follows :
export default defineConfig({
    schema: './src/server/db/schema.ts',
    out: './.drizzle',
    dialect: 'sqlite',
    driver: 'turso',
    dbCredentials: {
        url: env.DB_URI,
        authToken: env.TURSO_AUTH_TOKEN,
    },
    tablesFilter: ['*'],
    strict: env.NODE_ENV === 'production',
    verbose: env.NODE_ENV !== 'production',
})
Captura_de_pantalla_2025-03-26_a_las_9.21.37.png
Was this page helpful?