All Projects → vicbergquist → nuxt-sanity

vicbergquist / nuxt-sanity

Licence: MIT license
Easily integrate Sanity in your Nuxt.js project.

Programming Languages

javascript
184084 projects - #8 most used programming language
Vue
7211 projects

Projects that are alternatives of or similar to nuxt-sanity

nuxt-humans-txt
🧑🏻👩🏻 "We are people, not machines" - An initiative to know the creators of a website. Contains the information about humans to the web building - A Nuxt Module to statically integrate and generate a humans.txt author file - Based on the HumansTxt Project.
Stars: ✭ 27 (+92.86%)
Mutual labels:  nuxt, nuxt-module
supabase
An easy way to integrate Supabase with NuxtJS
Stars: ✭ 39 (+178.57%)
Mutual labels:  nuxt, nuxt-module
nuxt-stack
Suite of modules and commands for building performant applications with zero configuration
Stars: ✭ 67 (+378.57%)
Mutual labels:  nuxt, nuxt-module
sanity-codegen
Generate TypeScript types from your Sanity.io schemas
Stars: ✭ 181 (+1192.86%)
Mutual labels:  sanity, sanity-io
nuxt-speedkit
nuxt-speedkit will help you to improve the lighthouse performance score (100/100) of your website.
Stars: ✭ 401 (+2764.29%)
Mutual labels:  nuxt, nuxt-module
lumen-cms
GraphQL API-First CMS based on NodeJS and Vue 2, Nuxt and Vuetify
Stars: ✭ 77 (+450%)
Mutual labels:  nuxt, nuxt-module
sanity-portfolio-studio
A Sanity.io instance that powers a Gatsby portfolio site. Watch it get built live:
Stars: ✭ 14 (+0%)
Mutual labels:  sanity, sanity-io
vue-plausible
Plausible Analytics Vue.js Plugin and NuxtJS Module
Stars: ✭ 107 (+664.29%)
Mutual labels:  nuxt, nuxt-module
applicationinsights-module
Application Insights module for NuxtJS
Stars: ✭ 14 (+0%)
Mutual labels:  nuxt, nuxt-module
nuxt-security
Module for Nuxt.js to configure security headers and more
Stars: ✭ 46 (+228.57%)
Mutual labels:  nuxt, nuxt-module
nuxt-spa-store-init
A simple Nuxt module that will hydrate the VueX store when running in SPA mode (not SSR)
Stars: ✭ 14 (+0%)
Mutual labels:  nuxt, nuxt-module
nuxt-modules
AX2's Nuxt modules
Stars: ✭ 30 (+114.29%)
Mutual labels:  nuxt, nuxt-module
lunr-module
Full-text search with pre-build indexes for Nuxt.js using lunr.js
Stars: ✭ 45 (+221.43%)
Mutual labels:  nuxt, nuxt-module
sanity-gatsby-portfolio
A Gatsby portfolio site powered by Sanity.io. Watch it get built live:
Stars: ✭ 16 (+14.29%)
Mutual labels:  sanity, sanity-io
nuxt-ts-module
A tiny module to use Typescript within Nuxt.js application.
Stars: ✭ 21 (+50%)
Mutual labels:  nuxt, nuxt-module
nuxt-quasar
Nuxt module for the Quasar Framework
Stars: ✭ 36 (+157.14%)
Mutual labels:  nuxt, nuxt-module
nuxt-svg-sprite-module
A quick and dirty way to inline svg sprites in your Nuxt app.
Stars: ✭ 21 (+50%)
Mutual labels:  nuxt, nuxt-module
React-Commenting-System
Commenting System built with NextJS and Sanity
Stars: ✭ 28 (+100%)
Mutual labels:  sanity, sanity-io
mdx-module
MDX module for Nuxt
Stars: ✭ 44 (+214.29%)
Mutual labels:  nuxt, nuxt-module
nuxt-ghost
Easy Ghost content API integration with Nuxt.js.
Stars: ✭ 27 (+92.86%)
Mutual labels:  nuxt, nuxt-module

[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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].