import type { NextConfig } from "next"; const nextConfig: NextConfig = { reactStrictMode: true, output: "standalone", transpilePackages: ["@cmbot/db", "@cmbot/shared"], experimental: { typedRoutes: true, }, }; export default nextConfig;