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