Files
mlflow--mlflow/docs/src/docusaurus.theme.js
T
2026-07-13 13:22:34 +08:00

16 lines
576 B
JavaScript

export function onRouteDidUpdate({ location }) {
const { pathname } = location;
document.body.classList.remove('mlflow-ml-section', 'mlflow-genai-section');
if (pathname.startsWith('/genai')) {
document.documentElement.setAttribute('data-genai-theme', 'true');
document.body.classList.add('mlflow-genai-section');
} else if (pathname.startsWith('/ml')) {
document.documentElement.removeAttribute('data-genai-theme');
document.body.classList.add('mlflow-ml-section');
} else {
document.documentElement.removeAttribute('data-genai-theme');
}
}