Skip to content

Installation

bash
yarn add @mark.walker/v-cms
bash
npm install @mark.walker/v-cms
bash
pnpm add @mark.walker/v-cms

Add Nuxt Module

javascript
export default defineNuxtConfig({
  // ...
  modules: [
    // ...
    ['@mark.walker/v-cms', {}],
    // ...
  ],
  // ...
  vite: {
    optimizeDeps: {
      // Important
      include: ['@vueup/vue-quill'],
    },
  },
});