import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "http",
hostname: "**",
},
protocol: "https",
],
serverExternalPackages: ["sharp", "pdf2pic", "chokidar", "pg"],
};
export default nextConfig;