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>
9 lines
170 B
TypeScript
9 lines
170 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
serverExternalPackages: ["pdf-parse"],
|
|
};
|
|
|
|
export default nextConfig;
|