Files
PocketVeto/frontend/next.config.ts
2026-02-28 21:08:19 -05:00

14 lines
298 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
images: {
remotePatterns: [
{ protocol: "https", hostname: "bioguide.congress.gov" },
{ protocol: "https", hostname: "www.congress.gov" },
],
},
};
export default nextConfig;