What's the difference between this plugin and the strapi native slug field? #67
-
In strapi, a slug can be obtained by defining it on model schema like this ...
"title": {
"type": "string",
"required": true
},
"slug": {
"type": "uid",
"targetField": "title"
} This will generate a slug field on the model and in the admin interface we can automatically generate slug based on title |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
The main difference at the moment is compound slugs. You can combine multiple fields to create your slugs. The built in only works with one reference. |
Beta Was this translation helpful? Give feedback.
-
I find this plugin invaluable because the native slug field seems to be broken for many (including myself): strapi/strapi#11665 |
Beta Was this translation helpful? Give feedback.
The main difference at the moment is compound slugs. You can combine multiple fields to create your slugs. The built in only works with one reference.