mirror of
https://github.com/run-llama/ai-chatbot.git
synced 2026-06-30 21:27:54 -04:00
50bd4604b6
Co-authored-by: Bailey Simrell <baileysimrell@gmail.com>
17 lines
244 B
TypeScript
17 lines
244 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
experimental: {
|
|
ppr: true,
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
hostname: 'avatar.vercel.sh',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|