1
0
Fork 0
mirror of https://gitbruv.vercel.app/api/git/bruv/gitbruv.git synced 2025-12-20 23:24:09 +01:00
This commit is contained in:
Ahmet Kilinc 2025-12-20 12:21:33 +00:00
parent 468781e311
commit 1055bd7f07
8 changed files with 416 additions and 85 deletions

View file

@ -4,7 +4,8 @@ import { db } from "@/db";
import { repositories, users, stars } from "@/db/schema"; import { repositories, users, stars } from "@/db/schema";
import { getSession } from "@/lib/session"; import { getSession } from "@/lib/session";
import { eq, and, desc, count, sql } from "drizzle-orm"; import { eq, and, desc, count, sql } from "drizzle-orm";
import { revalidatePath, unstable_cache } from "next/cache"; import { revalidatePath } from "next/cache";
import { cacheLife, cacheTag } from "next/cache";
import git from "isomorphic-git"; import git from "isomorphic-git";
import { createR2Fs, getRepoPrefix } from "@/lib/r2-fs"; import { createR2Fs, getRepoPrefix } from "@/lib/r2-fs";
@ -244,6 +245,10 @@ export async function getRepoFileTree(owner: string, repoName: string, branch: s
} }
export async function getRepoFile(owner: string, repoName: string, branch: string, filePath: string) { export async function getRepoFile(owner: string, repoName: string, branch: string, filePath: string) {
"use cache";
cacheTag(`repo:${owner}/${repoName}`, `file:${owner}/${repoName}:${branch}:${filePath}`);
cacheLife("hours");
const user = await db.query.users.findFirst({ const user = await db.query.users.findFirst({
where: eq(users.username, owner), where: eq(users.username, owner),
}); });
@ -422,6 +427,10 @@ export async function updateRepository(repoId: string, data: { name?: string; de
} }
export async function getRepoBranches(owner: string, repoName: string) { export async function getRepoBranches(owner: string, repoName: string) {
"use cache";
cacheTag(`repo:${owner}/${repoName}`, `branches:${owner}/${repoName}`);
cacheLife("hours");
const user = await db.query.users.findFirst({ const user = await db.query.users.findFirst({
where: eq(users.username, owner), where: eq(users.username, owner),
}); });
@ -506,6 +515,10 @@ export async function getRepoCommitCount(owner: string, repoName: string, branch
} }
export async function getPublicRepositories(sortBy: "stars" | "updated" | "created" = "updated", limit: number = 20, offset: number = 0) { export async function getPublicRepositories(sortBy: "stars" | "updated" | "created" = "updated", limit: number = 20, offset: number = 0) {
"use cache";
cacheTag("public-repos", `public-repos:${sortBy}:${offset}`);
cacheLife("minutes");
const allRepos = await db const allRepos = await db
.select({ .select({
id: repositories.id, id: repositories.id,
@ -552,6 +565,16 @@ export async function getPublicRepositories(sortBy: "stars" | "updated" | "creat
}; };
} }
export async function getUserProfile(username: string) {
"use cache";
cacheTag(`user-profile:${username}`);
cacheLife("hours");
return db.query.users.findFirst({
where: eq(users.username, username),
});
}
export type FileEntry = { export type FileEntry = {
name: string; name: string;
type: "blob" | "tree"; type: "blob" | "tree";
@ -649,23 +672,26 @@ async function fetchCommitCount(userId: string, repoName: string, defaultBranch:
} }
} }
const getCachedFileTree = (owner: string, repoName: string, userId: string, defaultBranch: string) => async function getCachedFileTree(owner: string, repoName: string, userId: string, defaultBranch: string) {
unstable_cache(() => fetchFileTree(userId, repoName, defaultBranch), [`file-tree`, owner, repoName], { "use cache";
tags: [`repo:${owner}/${repoName}`], cacheTag(`repo:${owner}/${repoName}`, `file-tree:${owner}/${repoName}`);
revalidate: 3600, cacheLife("hours");
})(); return fetchFileTree(userId, repoName, defaultBranch);
}
const getCachedReadme = (owner: string, repoName: string, userId: string, readmeOid: string) => async function getCachedReadme(owner: string, repoName: string, userId: string, readmeOid: string) {
unstable_cache(() => fetchReadme(userId, repoName, readmeOid), [`readme`, owner, repoName, readmeOid], { "use cache";
tags: [`repo:${owner}/${repoName}`], cacheTag(`repo:${owner}/${repoName}`, `readme:${owner}/${repoName}`);
revalidate: 3600, cacheLife("hours");
})(); return fetchReadme(userId, repoName, readmeOid);
}
const getCachedCommitCount = (owner: string, repoName: string, userId: string, defaultBranch: string) => async function getCachedCommitCount(owner: string, repoName: string, userId: string, defaultBranch: string) {
unstable_cache(() => fetchCommitCount(userId, repoName, defaultBranch), [`commit-count`, owner, repoName], { "use cache";
tags: [`repo:${owner}/${repoName}`], cacheTag(`repo:${owner}/${repoName}`, `commit-count:${owner}/${repoName}`);
revalidate: 3600, cacheLife("hours");
})(); return fetchCommitCount(userId, repoName, defaultBranch);
}
export async function getRepoPageData(owner: string, repoName: string) { export async function getRepoPageData(owner: string, repoName: string) {
const [user, session] = await Promise.all([db.query.users.findFirst({ where: eq(users.username, owner) }), getSession()]); const [user, session] = await Promise.all([db.query.users.findFirst({ where: eq(users.username, owner) }), getSession()]);
@ -723,6 +749,10 @@ export async function getRepoCommitCountCached(owner: string, repoName: string)
} }
export async function getUserStarredRepos(username: string) { export async function getUserStarredRepos(username: string) {
"use cache";
cacheTag(`user-starred:${username}`);
cacheLife("minutes");
const user = await db.query.users.findFirst({ const user = await db.query.users.findFirst({
where: eq(users.username, username), where: eq(users.username, username),
}); });

View file

@ -1,7 +1,9 @@
import { Suspense } from "react"; import { Suspense } from "react";
import { notFound } from "next/navigation"; import { notFound } from "next/navigation";
import { connection } from "next/server";
import Link from "next/link"; import Link from "next/link";
import { getRepository, getRepoFile, getRepoBranches } from "@/actions/repositories"; import { getRepository, getRepoFile, getRepoBranches } from "@/actions/repositories";
import { ChunkedCodeViewer } from "@/components/chunked-code-viewer";
import { CodeViewer } from "@/components/code-viewer"; import { CodeViewer } from "@/components/code-viewer";
import { BranchSelector } from "@/components/branch-selector"; import { BranchSelector } from "@/components/branch-selector";
import { Badge } from "@/components/ui/badge"; import { Badge } from "@/components/ui/badge";
@ -28,12 +30,15 @@ const LANGUAGE_MAP: Record<string, string> = {
zsh: "bash", zsh: "bash",
}; };
const SMALL_FILE_THRESHOLD = 50 * 1024;
function getLanguage(filename: string): string { function getLanguage(filename: string): string {
const ext = filename.split(".").pop()?.toLowerCase() || ""; const ext = filename.split(".").pop()?.toLowerCase() || "";
return LANGUAGE_MAP[ext] || "text"; return LANGUAGE_MAP[ext] || "text";
} }
async function FileContent({ username, repoName, branch, filePath }: { username: string; repoName: string; branch: string; filePath: string }) { async function FileContent({ username, repoName, branch, filePath }: { username: string; repoName: string; branch: string; filePath: string }) {
await connection();
const file = await getRepoFile(username, repoName, branch, filePath); const file = await getRepoFile(username, repoName, branch, filePath);
if (!file) { if (!file) {
@ -42,6 +47,21 @@ async function FileContent({ username, repoName, branch, filePath }: { username:
const fileName = filePath.split("/").pop() || ""; const fileName = filePath.split("/").pop() || "";
const language = getLanguage(fileName); const language = getLanguage(fileName);
const fileSize = new TextEncoder().encode(file.content).length;
if (fileSize > SMALL_FILE_THRESHOLD) {
return (
<ChunkedCodeViewer
username={username}
repoName={repoName}
branch={branch}
filePath={filePath}
language={language}
initialContent={file.content}
totalSize={fileSize}
/>
);
}
return <CodeViewer content={file.content} language={language} showLineNumbers />; return <CodeViewer content={file.content} language={language} showLineNumbers />;
} }

View file

@ -1,5 +1,6 @@
import { Suspense } from "react"; import { Suspense } from "react";
import { notFound } from "next/navigation"; import { notFound } from "next/navigation";
import { connection } from "next/server";
import { getRepoPageData, getRepoReadme, getRepoCommitCountCached } from "@/actions/repositories"; import { getRepoPageData, getRepoReadme, getRepoCommitCountCached } from "@/actions/repositories";
import { FileTree } from "@/components/file-tree"; import { FileTree } from "@/components/file-tree";
import { CodeViewer } from "@/components/code-viewer"; import { CodeViewer } from "@/components/code-viewer";
@ -13,6 +14,7 @@ import Link from "next/link";
import { getPublicServerUrl } from "@/lib/utils"; import { getPublicServerUrl } from "@/lib/utils";
async function CommitCount({ username, repoName, branch }: { username: string; repoName: string; branch: string }) { async function CommitCount({ username, repoName, branch }: { username: string; repoName: string; branch: string }) {
await connection();
const commitCount = await getRepoCommitCountCached(username, repoName); const commitCount = await getRepoCommitCountCached(username, repoName);
if (commitCount === 0) return null; if (commitCount === 0) return null;
@ -30,6 +32,7 @@ async function CommitCount({ username, repoName, branch }: { username: string; r
} }
async function ReadmeSection({ username, repoName, readmeOid }: { username: string; repoName: string; readmeOid: string }) { async function ReadmeSection({ username, repoName, readmeOid }: { username: string; repoName: string; readmeOid: string }) {
await connection();
const content = await getRepoReadme(username, repoName, readmeOid); const content = await getRepoReadme(username, repoName, readmeOid);
if (!content) return null; if (!content) return null;

View file

@ -1,9 +1,7 @@
import { Suspense } from "react"; import { Suspense } from "react";
import { notFound } from "next/navigation"; import { notFound } from "next/navigation";
import { db } from "@/db"; import { connection } from "next/server";
import { users } from "@/db/schema"; import { getUserRepositoriesWithStars, getUserStarredRepos, getUserProfile } from "@/actions/repositories";
import { eq } from "drizzle-orm";
import { getUserRepositoriesWithStars, getUserStarredRepos } from "@/actions/repositories";
import { RepoList } from "@/components/repo-list"; import { RepoList } from "@/components/repo-list";
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
@ -13,6 +11,7 @@ import Link from "next/link";
import { GithubIcon, XIcon, LinkedInIcon } from "@/components/icons"; import { GithubIcon, XIcon, LinkedInIcon } from "@/components/icons";
async function RepositoriesTab({ username }: { username: string }) { async function RepositoriesTab({ username }: { username: string }) {
await connection();
const repos = await getUserRepositoriesWithStars(username); const repos = await getUserRepositoriesWithStars(username);
if (repos.length === 0) { if (repos.length === 0) {
@ -29,6 +28,7 @@ async function RepositoriesTab({ username }: { username: string }) {
} }
async function StarredTab({ username }: { username: string }) { async function StarredTab({ username }: { username: string }) {
await connection();
const repos = await getUserStarredRepos(username); const repos = await getUserStarredRepos(username);
if (repos.length === 0) { if (repos.length === 0) {
@ -65,9 +65,7 @@ export default async function ProfilePage({ params, searchParams }: { params: Pr
const { username } = await params; const { username } = await params;
const { tab } = await searchParams; const { tab } = await searchParams;
const user = await db.query.users.findFirst({ const user = await getUserProfile(username);
where: eq(users.username, username),
});
if (!user) { if (!user) {
notFound(); notFound();

View file

@ -1,8 +1,10 @@
import { Suspense } from "react";
import { connection } from "next/server";
import Link from "next/link"; import Link from "next/link";
import { getPublicRepositories } from "@/actions/repositories"; import { getPublicRepositories } from "@/actions/repositories";
import { Button } from "@/components/ui/button"; import { Button } from "@/components/ui/button";
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
import { Star, GitBranch, ChevronLeft, ChevronRight, Compass, Clock, Flame, Sparkles } from "lucide-react"; import { Star, GitBranch, ChevronLeft, ChevronRight, Compass, Clock, Flame, Sparkles, Loader2 } from "lucide-react";
import { formatDistanceToNow } from "date-fns"; import { formatDistanceToNow } from "date-fns";
const SORT_OPTIONS = [ const SORT_OPTIONS = [
@ -11,43 +13,23 @@ const SORT_OPTIONS = [
{ value: "created", label: "Newest", icon: Sparkles }, { value: "created", label: "Newest", icon: Sparkles },
] as const; ] as const;
export default async function ExplorePage({ searchParams }: { searchParams: Promise<{ sort?: string; page?: string }> }) { async function RepoGrid({ sortBy, page, perPage }: { sortBy: "stars" | "updated" | "created"; page: number; perPage: number }) {
const { sort: sortParam, page: pageParam } = await searchParams; await connection();
const sortBy = (["stars", "updated", "created"].includes(sortParam || "") ? sortParam : "stars") as "stars" | "updated" | "created";
const page = parseInt(pageParam || "1", 10);
const perPage = 20;
const offset = (page - 1) * perPage; const offset = (page - 1) * perPage;
const { repos, hasMore } = await getPublicRepositories(sortBy, perPage, offset); const { repos, hasMore } = await getPublicRepositories(sortBy, perPage, offset);
if (repos.length === 0) {
return ( return (
<div className="container py-8">
<div className="mb-8">
<div className="flex items-center gap-3 mb-2">
<Compass className="h-8 w-8 text-accent" />
<h1 className="text-3xl font-bold">Explore</h1>
</div>
<p className="text-muted-foreground">Discover public repositories from the community</p>
</div>
<div className="flex flex-wrap items-center gap-2 mb-6">
{SORT_OPTIONS.map(({ value, label, icon: Icon }) => (
<Button key={value} variant={sortBy === value ? "default" : "outline"} size="sm" asChild className="gap-2">
<Link href={`/explore?sort=${value}`}>
<Icon className="h-4 w-4" />
{label}
</Link>
</Button>
))}
</div>
{repos.length === 0 ? (
<div className="border border-dashed border-border rounded-xl p-12 text-center bg-card/30"> <div className="border border-dashed border-border rounded-xl p-12 text-center bg-card/30">
<GitBranch className="h-12 w-12 mx-auto mb-4 text-muted-foreground" /> <GitBranch className="h-12 w-12 mx-auto mb-4 text-muted-foreground" />
<h3 className="text-lg font-semibold mb-2">No repositories yet</h3> <h3 className="text-lg font-semibold mb-2">No repositories yet</h3>
<p className="text-muted-foreground">Be the first to create a public repository!</p> <p className="text-muted-foreground">Be the first to create a public repository!</p>
</div> </div>
) : ( );
}
return (
<>
<div className="space-y-4"> <div className="space-y-4">
{repos.map((repo) => ( {repos.map((repo) => (
<div key={repo.id} className="border border-border rounded-xl p-5 bg-card hover:border-accent/50 transition-colors"> <div key={repo.id} className="border border-border rounded-xl p-5 bg-card hover:border-accent/50 transition-colors">
@ -79,7 +61,6 @@ export default async function ExplorePage({ searchParams }: { searchParams: Prom
</div> </div>
))} ))}
</div> </div>
)}
{(page > 1 || hasMore) && ( {(page > 1 || hasMore) && (
<div className="flex items-center justify-between mt-8"> <div className="flex items-center justify-between mt-8">
@ -98,6 +79,62 @@ export default async function ExplorePage({ searchParams }: { searchParams: Prom
</Button> </Button>
</div> </div>
)} )}
</>
);
}
function RepoGridSkeleton() {
return (
<div className="space-y-4">
{[...Array(5)].map((_, i) => (
<div key={i} className="border border-border rounded-xl p-5 bg-card animate-pulse">
<div className="flex items-start gap-4">
<div className="h-10 w-10 rounded-full bg-muted" />
<div className="flex-1">
<div className="h-5 bg-muted rounded w-1/3 mb-2" />
<div className="h-4 bg-muted rounded w-2/3 mb-3" />
<div className="flex gap-4">
<div className="h-4 bg-muted rounded w-16" />
<div className="h-4 bg-muted rounded w-24" />
</div>
</div>
</div>
</div>
))}
</div>
);
}
export default async function ExplorePage({ searchParams }: { searchParams: Promise<{ sort?: string; page?: string }> }) {
const { sort: sortParam, page: pageParam } = await searchParams;
const sortBy = (["stars", "updated", "created"].includes(sortParam || "") ? sortParam : "stars") as "stars" | "updated" | "created";
const page = parseInt(pageParam || "1", 10);
const perPage = 20;
return (
<div className="container py-8">
<div className="mb-8">
<div className="flex items-center gap-3 mb-2">
<Compass className="h-8 w-8 text-accent" />
<h1 className="text-3xl font-bold">Explore</h1>
</div>
<p className="text-muted-foreground">Discover public repositories from the community</p>
</div>
<div className="flex flex-wrap items-center gap-2 mb-6">
{SORT_OPTIONS.map(({ value, label, icon: Icon }) => (
<Button key={value} variant={sortBy === value ? "default" : "outline"} size="sm" asChild className="gap-2">
<Link href={`/explore?sort=${value}`}>
<Icon className="h-4 w-4" />
{label}
</Link>
</Button>
))}
</div>
<Suspense fallback={<RepoGridSkeleton />}>
<RepoGrid sortBy={sortBy} page={page} perPage={perPage} />
</Suspense>
</div> </div>
); );
} }

View file

@ -0,0 +1,135 @@
import { NextRequest, NextResponse } from "next/server";
import { db } from "@/db";
import { users, repositories } from "@/db/schema";
import { eq, and } from "drizzle-orm";
import { getSession } from "@/lib/session";
import git from "isomorphic-git";
import { createR2Fs, getRepoPrefix } from "@/lib/r2-fs";
const CHUNK_SIZE = 64 * 1024;
export async function GET(request: NextRequest, { params }: { params: Promise<{ path: string[] }> }) {
const { path } = await params;
if (path.length < 4) {
return NextResponse.json({ error: "Invalid path" }, { status: 400 });
}
const [username, repoName, branch, ...fileParts] = path;
const filePath = fileParts.join("/");
const user = await db.query.users.findFirst({
where: eq(users.username, username),
});
if (!user) {
return NextResponse.json({ error: "User not found" }, { status: 404 });
}
const repo = await db.query.repositories.findFirst({
where: and(eq(repositories.ownerId, user.id), eq(repositories.name, repoName)),
});
if (!repo) {
return NextResponse.json({ error: "Repository not found" }, { status: 404 });
}
if (repo.visibility === "private") {
const session = await getSession();
if (!session?.user || session.user.id !== repo.ownerId) {
return NextResponse.json({ error: "Unauthorized" }, { status: 403 });
}
}
const repoPrefix = getRepoPrefix(user.id, `${repoName}.git`);
const fs = createR2Fs(repoPrefix);
try {
const commits = await git.log({
fs,
gitdir: "/",
ref: branch,
depth: 1,
});
if (commits.length === 0) {
return NextResponse.json({ error: "Branch not found" }, { status: 404 });
}
const commitOid = commits[0].oid;
const parts = filePath.split("/").filter(Boolean);
const fileName = parts.pop()!;
let currentTree = (await git.readTree({ fs, gitdir: "/", oid: commitOid })).tree;
for (const part of parts) {
const entry = currentTree.find((e) => e.path === part && e.type === "tree");
if (!entry) {
return NextResponse.json({ error: "Path not found" }, { status: 404 });
}
currentTree = (await git.readTree({ fs, gitdir: "/", oid: entry.oid })).tree;
}
const fileEntry = currentTree.find((e) => e.path === fileName && e.type === "blob");
if (!fileEntry) {
return NextResponse.json({ error: "File not found" }, { status: 404 });
}
const { blob } = await git.readBlob({
fs,
gitdir: "/",
oid: fileEntry.oid,
});
const rangeHeader = request.headers.get("range");
if (rangeHeader) {
const match = rangeHeader.match(/bytes=(\d+)-(\d*)/);
if (match) {
const start = parseInt(match[1], 10);
const end = match[2] ? parseInt(match[2], 10) : Math.min(start + CHUNK_SIZE - 1, blob.length - 1);
const chunk = blob.slice(start, end + 1);
return new NextResponse(chunk, {
status: 206,
headers: {
"Content-Range": `bytes ${start}-${end}/${blob.length}`,
"Accept-Ranges": "bytes",
"Content-Length": chunk.length.toString(),
"Content-Type": "application/octet-stream",
},
});
}
}
const stream = new ReadableStream({
start(controller) {
let offset = 0;
const push = () => {
if (offset >= blob.length) {
controller.close();
return;
}
const chunk = blob.slice(offset, offset + CHUNK_SIZE);
controller.enqueue(chunk);
offset += CHUNK_SIZE;
setTimeout(push, 0);
};
push();
},
});
return new NextResponse(stream, {
headers: {
"Content-Type": "application/octet-stream",
"Content-Length": blob.length.toString(),
"Accept-Ranges": "bytes",
"X-Total-Size": blob.length.toString(),
},
});
} catch (err) {
console.error("File streaming error:", err);
return NextResponse.json({ error: "Internal server error" }, { status: 500 });
}
}

View file

@ -0,0 +1,108 @@
"use client";
import { useState, useEffect, useCallback } from "react";
import { CodeViewer } from "./code-viewer";
import { Loader2 } from "lucide-react";
const CHUNK_SIZE = 64 * 1024;
const LARGE_FILE_THRESHOLD = 100 * 1024;
interface ChunkedCodeViewerProps {
username: string;
repoName: string;
branch: string;
filePath: string;
language: string;
initialContent?: string;
totalSize?: number;
}
export function ChunkedCodeViewer({ username, repoName, branch, filePath, language, initialContent, totalSize }: ChunkedCodeViewerProps) {
const [content, setContent] = useState(initialContent || "");
const [loading, setLoading] = useState(!initialContent);
const [progress, setProgress] = useState(initialContent ? 100 : 0);
const [error, setError] = useState<string | null>(null);
const loadFile = useCallback(async () => {
if (initialContent) return;
setLoading(true);
setError(null);
try {
const response = await fetch(`/api/file/${username}/${repoName}/${branch}/${filePath}`);
if (!response.ok) {
throw new Error("Failed to load file");
}
const size = parseInt(response.headers.get("X-Total-Size") || "0", 10);
if (size < LARGE_FILE_THRESHOLD || !response.body) {
const text = await response.text();
setContent(text);
setProgress(100);
setLoading(false);
return;
}
const reader = response.body.getReader();
const decoder = new TextDecoder();
let result = "";
let loaded = 0;
while (true) {
const { done, value } = await reader.read();
if (done) break;
result += decoder.decode(value, { stream: true });
loaded += value.length;
setProgress(Math.min(Math.round((loaded / size) * 100), 100));
setContent(result);
}
result += decoder.decode();
setContent(result);
setProgress(100);
} catch (err) {
setError(err instanceof Error ? err.message : "Failed to load file");
} finally {
setLoading(false);
}
}, [username, repoName, branch, filePath, initialContent]);
useEffect(() => {
loadFile();
}, [loadFile]);
if (error) {
return (
<div className="p-8 text-center">
<p className="text-destructive">{error}</p>
</div>
);
}
return (
<div className="relative">
{loading && progress < 100 && (
<div className="absolute top-0 left-0 right-0 z-10">
<div className="h-1 bg-muted overflow-hidden">
<div className="h-full bg-accent transition-all duration-300" style={{ width: `${progress}%` }} />
</div>
<div className="absolute top-2 right-2 flex items-center gap-2 text-xs text-muted-foreground bg-card/90 px-2 py-1 rounded">
<Loader2 className="h-3 w-3 animate-spin" />
<span>{progress}%</span>
</div>
</div>
)}
{content ? (
<CodeViewer content={content} language={language} showLineNumbers />
) : (
<div className="p-8 flex items-center justify-center">
<Loader2 className="h-8 w-8 animate-spin text-muted-foreground" />
</div>
)}
</div>
);
}

View file

@ -1,8 +1,8 @@
import type { NextConfig } from "next"; import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
/* config options here */
experimental: { experimental: {
useCache: true,
serverActions: { serverActions: {
bodySizeLimit: "1mb", bodySizeLimit: "1mb",
}, },