You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/content/1.robots/3.api/1.config.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Nuxt Config
3
-
description: Learn how to configure nuxt-simple-robots using nuxt.config.
3
+
description: Learn how to configure Nuxt Robots using nuxt.config.
4
4
---
5
5
6
6
## `enabled`
@@ -120,7 +120,7 @@ When set to `false`, no merging will occur.
120
120
121
121
Blocks some non-SEO bots from crawling your site. This is not a replacement for a full-blown bot management solution, but it can help to reduce the load on your server.
122
122
123
-
See [const.ts](https://github.com/harlan-zw/nuxt-simple-robots/blob/main/src/const.ts#L6) for the list of bots that are blocked.
123
+
See [const.ts](https://github.com/nuxt-modules/robots/blob/main/src/const.ts#L6) for the list of bots that are blocked.
124
124
125
125
```ts
126
126
exportdefaultdefineNuxtConfig({
@@ -147,9 +147,9 @@ Enables debug logs and a debug endpoint.
147
147
Control the module credit comment in the generated robots.txt file.
Blocks some non-SEO bots from crawling your site. This is not a replacement for a full-blown bot management solution, but it can help to reduce the load on your server.
56
56
57
-
See [const.ts](https://github.com/harlan-zw/nuxt-simple-robots/blob/main/src/const.ts#L6) for the list of bots that are blocked.
57
+
See [const.ts](https://github.com/nuxt-modules/robots/blob/main/src/const.ts#L6) for the list of bots that are blocked.
58
58
59
59
```ts
60
60
exportdefaultdefineNuxtConfig({
@@ -79,9 +79,9 @@ This has been changed to include all `disallow` paths for the `*` user-agent by
79
79
Control the module credit comment in the generated robots.txt file.
Copy file name to clipboardexpand all lines: docs/content/1.robots/4.releases/1.v4.md
+26-2
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,32 @@ title: v4.0.0
3
3
description: Release notes for Nuxt Simple Robots v4.0.0.
4
4
---
5
5
6
+
## Nuxt Simple Robots is now Nuxt Robots
7
+
8
+
In a [discussion](https://github.com/nuxt-modules/robots/issues/116) with the team and the community, we have decided to migrate `nuxt-simple-robots` into the `@nuxtjs/robots` module.
9
+
10
+
This will allow me to better maintain the module and provide a more consistent experience across the Nuxt ecosystem.
11
+
12
+
To upgrade simply replace the dependency in `package.json` and update your nuxt.config. Other changes are below.
13
+
14
+
```diff
15
+
- 'nuxt-simple-robots'
16
+
+ '@nuxtjs/robots'
17
+
```
18
+
6
19
## :icon{name="i-noto-rocket"} Features
7
20
21
+
### useRobotsRule()
22
+
23
+
A new Nuxt composable [useRobotsRule()](/robots/api/use-robots-rule) has been introduced to allow you to access and modify the current robots rule for the current route.
0 commit comments