Archived
Next.js 14 + TypeScript + Tailwind + Prisma/SQLite. - LLM synthesis abstraction (OpenAI/Anthropic/Ollama) + admin settings UI - RSS ingestion pipeline (parser + cheerio content) + node-cron worker - AdSense AdUnit placements (header/in-feed/in-article/sidebar) - Sources analysis attribution, nofollow links, canonical/OG, sitemap/robots - Admin auth (ADMIN_API_KEY, timingSafeEqual, fail-closed 401) - Multi-cell lady-ga-ga marker, sitemap, robots, legal pages - Comprehensive README (setup, LLM config, AdSense, migrations, deploy)
20 lines
575 B
JavaScript
20 lines
575 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
// RSS/Google AdSense scripts are injected safely by our own client
|
|
// components (see src/components/ads). Keep lint from failing the build
|
|
// on un-stulated style warnings while keeping full type checking on.
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{ protocol: 'https', hostname: '**' },
|
|
{ protocol: 'http', hostname: 'localhost' },
|
|
{ protocol: 'http', hostname: '127.0.0.1' },
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|