fix: update Next.js configuration for turbopack rules

- Replaced experimental turbo configuration with turbopack for SQL file handling, ensuring compatibility with the latest Next.js features.
This commit is contained in:
Julien Froidefond
2025-09-17 14:46:13 +02:00
parent 95df2ad257
commit 8394f78fc7

View File

@@ -2,12 +2,10 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
output: 'standalone', output: 'standalone',
experimental: { turbopack: {
turbo: { rules: {
rules: { '*.sql': ['raw'],
'*.sql': ['raw'], }
},
},
}, },
}; };