On this page

Standard collections

Pruvious comes with 8 standard collections by default.


Overview

Here's an overview of the standard collections:

CollectionDescription

The pages collection is a multi-entry collection that handles website pages.

The presets collection is a multi-entry collection that handles reusable block presets for page-like collections.

The previews collection is a multi-entry collection that stores page preview data for collections that support content blocks.

The redirects collection is a single-entry collection that manages URL redirects.

The roles collection is a multi-entry collection that stores user roles for simplifying user capability management.

The seo collection is a single-entry collection that provides built-in search engine optimization features for page-like collections.

The uploads collection is a multi-entry collection that manages file uploads and image optimization.

The users collection is a multi-entry collection that stores users and is tightly bound with the authentication and API guard functionalities.

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