Self-hosted US Congress monitoring platform with AI policy briefs, bill/member/topic follows, ntfy + RSS + email notifications, alignment scoring, collections, and draft-letter generator. Authored by: Jack Levy
14 lines
298 B
TypeScript
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;
|