fifteen/apps/web/next.config.ts
2026-03-01 21:58:53 +01:00

8 lines
229 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
transpilePackages: ["@transportationer/shared"],
serverExternalPackages: ["ioredis", "bullmq", "postgres", "bcryptjs"],
};
export default nextConfig;