commit 937203cd911e04d08a7571810b1c95bd8734eacc parent 80a79db22e7a71e0082f3059197f21012b6496a7 Author: minerva-jupiter <ryouturn@gmail.com> Date: Sat, 27 Sep 2025 15:42:42 +0900 become route to edge Diffstat:
| M | app/api/chat/route.ts | | | 1 | + |
| M | next.config.ts | | | 5 | ++--- |
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/app/api/chat/route.ts b/app/api/chat/route.ts @@ -1,3 +1,4 @@ +export const runtime = "edge"; import { GoogleGenAI } from "@google/genai"; import { NextRequest, NextResponse } from "next/server"; diff --git a/next.config.ts b/next.config.ts @@ -1,6 +1,5 @@ -import type { NextConfig } from 'next'; +import type { NextConfig } from "next"; -const nextConfig: NextConfig = { -}; +const nextConfig: NextConfig = {}; export default nextConfig;