feat: v1 — persistent shell, model gateway, artifact improvements (#1462)

This commit is contained in:
dancer 2026-03-20 09:37:02 +00:00 committed by GitHub
parent 3651670fb9
commit f9652b452a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
161 changed files with 5166 additions and 8009 deletions

View file

@ -10,6 +10,15 @@ const nextConfig: NextConfig = {
NEXT_PUBLIC_BASE_PATH: basePath,
},
cacheComponents: true,
devIndicators: false,
poweredByHeader: false,
reactCompiler: true,
logging: {
fetches: {
fullUrl: false,
},
incomingRequests: false,
},
images: {
remotePatterns: [
{
@ -17,11 +26,17 @@ const nextConfig: NextConfig = {
},
{
protocol: "https",
//https://nextjs.org/docs/messages/next-image-unconfigured-host
hostname: "*.public.blob.vercel-storage.com",
},
],
},
experimental: {
prefetchInlining: true,
cachedNavigations: true,
appNewScrollHandler: true,
inlineCss: true,
turbopackFileSystemCacheForDev: true,
},
};
export default withBotId(nextConfig);