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: README.md
+25-26Lines changed: 25 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,8 @@ In our minimum support we're following [official Node.js releases timelines](htt
110
110
> This plugin is designed for **Strapi v5**. To get support for other Strapi versions, please follow the [versions](#-versions) section.
111
111
112
112
**Plugin dependencies**
113
-
-`@strapi/plugin-graphql` - required to run GraphQL handled by this plugin
113
+
114
+
-`@strapi/plugin-graphql` - required to run GraphQL handled by this plugin
114
115
115
116
**We recommend always using the latest version of Strapi to start your new projects**.
116
117
@@ -134,7 +135,7 @@ On the dedicated page, you will be able to set up all crucial properties which d
134
135
To setup amend default plugin configuration we recommend to put following snippet as part of `config/plugins.{js|ts}` or `config/<env>/plugins.{js|ts}` file. If the file does not exist yet, you have to create it manually. If you've got already configurations for other plugins stores by this way, use just the `comments` part within exising `plugins` item.
135
136
136
137
```ts
137
-
module.exports= ({ env }) => ({
138
+
module.exports= ({ env }) => ({
138
139
//...
139
140
comments: {
140
141
enabled: true,
@@ -289,6 +290,7 @@ Return a hierarchical tree structure of comments for specified instance of Conte
@@ -937,34 +939,32 @@ Lifecycle hooks can be register either in `register()` or `bootstrap()` methods
937
939
938
940
Listeners can by sync and `async`.
939
941
940
-
>Be aware that lifecycle hooks registered in `register()` may be fired by plugin's bootstrapping. If you want listen to events triggered after server's startup use `bootstrap()`.
942
+
>Be aware that lifecycle hooks registered in `register()` may be fired by plugin's bootstrapping. If you want listen to events triggered after server's startup use `bootstrap()`.
0 commit comments