Shyamnath's picture
Push UI dashboard and deployment files
c40c75a
raw
history blame contribute delete
236 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
basePath: process.env.UI_BASE_PATH || '/ui',
};
nextConfig.experimental = {
missingSuspenseWithCSRBailout: false
}
export default nextConfig;