ClauseGuard / web /next.config.ts
gaurv007's picture
Build all missing features: PDF/DOCX upload, team system (5 seats, invites, shared dashboard), API keys (generate/revoke/limits), custom clause rules (CRUD + regex)
89ccd89 verified
raw
history blame
390 Bytes
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
serverExternalPackages: ["@react-pdf/renderer", "pdf-parse", "mammoth"],
images: {
remotePatterns: [
{ protocol: "https", hostname: "avatars.githubusercontent.com" },
{ protocol: "https", hostname: "lh3.googleusercontent.com" },
],
},
};
export default nextConfig;