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