File size: 290 Bytes
5c920e9
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
/** @type {import('next').NextConfig} */
const isHuggingFaceSpace = process.env.HUGGINGFACE_SPACE === "1";

const nextConfig = {
  output: "export",
  trailingSlash: true,
  ...(isHuggingFaceSpace ? {} : { basePath: "/UI" }),
  images: { unoptimized: true },
};

export default nextConfig;