chatbot-template/next.config.ts

30 lines
490 B
TypeScript
Raw Normal View History

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
env: {
NEXT_PUBLIC_BASE_PATH: "",
},
devIndicators: false,
poweredByHeader: false,
reactCompiler: true,
logging: {
fetches: {
fullUrl: false,
},
incomingRequests: false,
},
images: {
remotePatterns: [
{
hostname: "avatar.vercel.sh",
},
],
},
experimental: {
prefetchInlining: true,
},
};
export default nextConfig;