10 lines
299 B
TypeScript
10 lines
299 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
// Images are served via our own /api/uploads route handler, so no external hostname needed.
|
|
// next/image requires a remotePatterns entry only for external domains.
|
|
};
|
|
|
|
export default nextConfig;
|