echos-ocr/next.config.ts

21 lines
402 B
TypeScript
Raw Normal View History

2026-03-09 16:31:21 -04:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "http",
hostname: "**",
},
{
protocol: "https",
hostname: "**",
},
],
},
serverExternalPackages: ["sharp", "pdf2pic", "chokidar", "pg", "imapflow", "mailparser"],
2026-03-09 16:31:21 -04:00
};
export default nextConfig;