diff --git a/next.config.ts b/next.config.ts index af6886a..4fa8b56 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,12 +2,10 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: 'standalone', - experimental: { - turbo: { - rules: { - '*.sql': ['raw'], - }, - }, + turbopack: { + rules: { + '*.sql': ['raw'], + } }, };