2026-03-09 16:31:21 -04:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2026-03-10 08:17:45 -04:00
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
2026-04-16 00:51:44 -04:00
|
|
|
hostname: "**.supabase.co",
|
2026-03-10 08:17:45 -04:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2026-04-17 16:12:54 -04:00
|
|
|
serverExternalPackages: ["sharp", "@napi-rs/canvas", "pg", "basic-ftp", "ssh2", "ssh2-sftp-client", "imapflow", "mailparser"],
|
2026-03-09 16:31:21 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|