0.0.8 • Published 5 years ago

nuxt-sanity v0.0.8

Weekly downloads
47
License
MIT
Repository
github
Last release
5 years ago

nuxt-sanity

npm version npm downloads Circle CI Codecov Dependencies Standard JS

📖 Read documentation

Setup

  1. Add the nuxt-sanity dependency with yarn or npm to your project
yarn add nuxt-sanity // or npm install nuxt-sanity
  1. Add nuxt-sanity to the modules section of nuxt.config.js
{
  modules: [
    'nuxt-sanity'
  ]
}
  1. Configure the module:
{
  modules: [
    // Simple usage
    'nuxt-sanity',

    // With inline options
    ['nuxt-sanity', { /* module options */ }]
  ],
  // Or a Sanity object
  sanity: {
    projectId: '', // string, required
    dataset: '', // string, required
    token: '', // string, optional
    useCdn: false // boolean, optional, default is false
  }
}

Development

  1. Clone this repository
  2. Install dependencies using yarn install or npm install
  3. Start development server using npm run dev

License

MIT License