1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-08 21:13:14 +02:00
Files
OpenIntegrations/docs/docusaurus/plugins/course-protection/index.js
T
2025-11-18 20:17:58 +03:00

18 lines
346 B
JavaScript
Vendored

module.exports = function(context) {
return {
name: 'course-protection-plugin',
injectHtmlTags() {
return {
headTags: [
{
tagName: 'meta',
attributes: {
name: 'robots',
content: 'noindex, nofollow'
},
},
],
};
},
};
};