chat-indic-ui / next.config.mjs
sam2ai's picture
Synced repo using 'sync_with_huggingface' Github Action
0971cc4 verified
raw
history blame contribute delete
215 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
// set basepath based on environment
basePath: process.env.NEXT_PUBLIC_BASE_PATH ?? "",
output: "standalone",
};
export default nextConfig;