vicmeow / nuxt-sanity

Easily integrate Sanity in your Nuxt.js project.

Home Page:https://nuxt-sanity.netlify.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[deprecated] nuxt-sanity

npm version npm downloads Circle CI Codecov Dependencies Standard JS

This package is now deprecated and replaced by @nuxtjs/sanity

đź“– 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

About

Easily integrate Sanity in your Nuxt.js project.

https://nuxt-sanity.netlify.com/

License:MIT License


Languages

Language:JavaScript 98.7%Language:Vue 1.3%