- Configure identity, prompts, guardrails for personal finance domain - Add 6 knowledge sources to Pinecone RAG (budgeting, investing, credit, etc.) - Add password protection via Next.js middleware - Add Dockerfile for container deployment - Customize terms of use with financial disclaimers
8 lines
129 B
TypeScript
8 lines
129 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|