@nuxtjs/vendor

[![npm](https://img.shields.io/npm/dt/@nuxtjs/vendor.svg?style=flat-square)](https://npmjs.com/package/@nuxtjs/vendor) [![npm (scoped with tag)](https://img.shields.io/npm/v/@nuxtjs/vendor/latest.svg?style=flat-square)](https://npmjs.com/package/@nuxtjs/v

Usage no npm install needed!

<script type="module">
  import nuxtjsVendor from 'https://cdn.skypack.dev/@nuxtjs/vendor';
</script>

README

Vendor

npm npm (scoped with tag)

This awesome little modules creates junction symlinks from node_modules into static/vendor so you can directly serve node modules inside web. Useful for runtime dependencies.

Usage

  • Add @nuxtjs/vendor dependency using yarn or npm to your project
  • Add @nuxtjs/vendor to modules section of nuxt.config.js
{
  modules: [
    '@nuxtjs/vendor',
  ]
}
  • Define your dependencies in nuxt.config.json inside vendor section
{
    vendor: [ 'ckeditor' ]
}
  • Add /static/vendor to .gitignore