next.config.ts 233 B

123456789101112
  1. import type { NextConfig } from "next";
  2. const nextConfig: NextConfig = {
  3. output: "standalone",
  4. serverExternalPackages: [
  5. "@coral-xyz/anchor",
  6. "@meteora-ag/dlmm",
  7. "@prisma/client",
  8. ],
  9. };
  10. export default nextConfig;