0.0.4 • Published 4 years ago

nuxt-cloudinary v0.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

nuxt-cloudinary

npm version npm downloads Github Actions CI Codecov License

Cloudinary module for Nuxt

📖 Release Notes

Setup

  1. Add nuxt-cloudinary dependency to your project
yarn add nuxt-cloudinary # or npm install nuxt-cloudinary
  1. Add nuxt-cloudinary to the modules section of nuxt.config.js
{
  modules: [
    // Simple usage
    'nuxt-cloudinary',

    // With options
    ['nuxt-cloudinary', { /* module options */ }]
  ]
}

Or a separate section cloudinary for module options:

{
  modules: [
    // Simple usage
    'nuxt-cloudinary',
  ],
  cloudinary: {
    cloudName: '<your-cloudinary-cloudname',
    /* all other options */
  }
}

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

Copyright (c) Maya Shavin maya@cloudinary.com