const noIndexUri = ['/trivium-register']; const pathname = window.location.pathname; if (noIndexUri.includes(pathname)) { const metaRobots = document.createElement('meta'); metaRobots.name = 'robots'; metaRobots.content = 'noindex'; document.head.appendChild(metaRobots); }