File size: 392 Bytes
1187856 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// An optional isolated directory supports parallel local builds.
distDir: process.env.TRIWORLDBENCH_NEXT_DIST_DIR || ".next",
outputFileTracingRoot: __dirname,
// Public styles and static assets are imported directly by the site layout.
images: {
remotePatterns: [],
},
};
export default nextConfig;
|