Standard collections
Pruvious comes with 8 standard collections by default.
Overview
Here's an overview of the standard collections:
Collection | Description |
---|---|
The | |
The | |
The | |
The | |
The | |
The | |
The | |
The |
Module options
You can disable the standard collections directly in your nuxt.config.ts
file:
# nuxt.config.ts
export default defineNuxtConfig({
modules: ['pruvious'],
pruvious: {
standardCollections: {
pages: false,
presets: false,
previews: false,
redirects: false,
uploads: false,
roles: false,
seo: false,
users: false,
}
},
})
Please note that disabling certain collections may result in errors in your application. This is because some functionalities in the CMS are closely linked to the default collections.
Last updated on January 4, 2024 at 19:18