30 lines
490 B
TypeScript
30 lines
490 B
TypeScript
|
|
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;
|