- Replaced experimental turbo configuration with turbopack for SQL file handling, ensuring compatibility with the latest Next.js features.
13 lines
192 B
TypeScript
13 lines
192 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
turbopack: {
|
|
rules: {
|
|
'*.sql': ['raw'],
|
|
}
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|