From 8394f78fc77070c5d93e523c7b94b3768468e8e8 Mon Sep 17 00:00:00 2001 From: Julien Froidefond Date: Wed, 17 Sep 2025 14:46:13 +0200 Subject: [PATCH] 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. --- next.config.ts | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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'], + } }, };