Files
StageAI/next.config.ts
CTO (LegalAI) 34047739cf feat: add PDF upload support to Fliesstext-Import
The import page now accepts PDF files in addition to TXT.
Backend uses pdf-parse to extract text from uploaded PDFs
before sending to AI for paragraph parsing.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-09 11:52:58 +00:00

9 lines
170 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
serverExternalPackages: ["pdf-parse"],
};
export default nextConfig;