Files
nanami-web/next.config.ts
2026-03-18 17:13:27 +08:00

14 lines
288 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
serverExternalPackages: ["bcryptjs", "@prisma/adapter-pg", "pg"],
images: {
remotePatterns: [
{ protocol: "https", hostname: "**" },
],
},
};
export default nextConfig;