feat: v1 — persistent shell, model gateway, artifact improvements (#1462)
This commit is contained in:
parent
3651670fb9
commit
f9652b452a
161 changed files with 5166 additions and 8009 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue