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