You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
export default {
|
|
// https://market.strapi.io/plugins/strapi-blurhash
|
|
// https://market.strapi.io/plugins/strapi-plugin-comments
|
|
// https://market.strapi.io/plugins/@notum-cz-strapi-plugin-content-versioning
|
|
// https://market.strapi.io/plugins/strapi-plugin-config-sync
|
|
// https://market.strapi.io/plugins/strapi-plugin-ezforms
|
|
ezforms: {
|
|
config: {
|
|
captchaProvider: {
|
|
name: "none",
|
|
},
|
|
notificationProviders: [],
|
|
},
|
|
},
|
|
// https://market.strapi.io/plugins/strapi-plugin-duplicate-button
|
|
"duplicate-button": true,
|
|
// https://market.strapi.io/plugins/@strapi-plugin-seo
|
|
seo: {
|
|
enabled: true,
|
|
},
|
|
// https://market.strapi.io/plugins/strapi-plugin-slugify
|
|
slugify: {
|
|
enabled: true,
|
|
config: {
|
|
contentTypes: {
|
|
post: {
|
|
field: "slug",
|
|
references: "title",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
graphql: {
|
|
config: {
|
|
endpoint: "/graphql",
|
|
shadowCRUD: true,
|
|
playgroundAlways: false,
|
|
depthLimit: 7,
|
|
amountLimit: 100,
|
|
apolloServer: {
|
|
tracing: false,
|
|
},
|
|
},
|
|
},
|
|
};
|