import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: 'standalone', experimental: { turbo: { rules: { '*.sql': ['raw'], }, }, }, }; export default nextConfig;