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:
@@ -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'],
|
}
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user