itube-specs 0.0.761 → 0.0.762

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Помечает страницу как noindex для поисковиков (ссылки при этом проходятся — follow).
3
+ * Для приватных/служебных страниц и результатов внутреннего поиска.
4
+ */
5
+ export function useNoindex() {
6
+ useHead({
7
+ meta: [
8
+ { name: 'robots', content: 'noindex, follow' },
9
+ ],
10
+ });
11
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.761",
4
+ "version": "0.0.762",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {