Spaces:
Sleeping
Sleeping
File size: 390 Bytes
9548e93 89ccd89 9548e93 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
serverExternalPackages: ["@react-pdf/renderer", "pdf-parse", "mammoth"],
images: {
remotePatterns: [
{ protocol: "https", hostname: "avatars.githubusercontent.com" },
{ protocol: "https", hostname: "lh3.googleusercontent.com" },
],
},
};
export default nextConfig;
|