Nuxt module for integrating with Hatchly-based web platforms
Created and maintained by the Netsells team
This module sets up the various official hatchly Nuxt integration modules:
- @hatchly/nuxt-files-module
- @hatchly/nuxt-navigation-module
- @hatchly/nuxt-newsletter-module
- @hatchly/nuxt-pages-module
- @hatchly/nuxt-redirects-module
- @hatchly/nuxt-snippets-module
Install the dependencies using the following command:
yarn add @netsells/nuxt-hatchly
Add the module to your modules
array in your nuxt config file:
modules: [
'@netsells/nuxt-hatchly',
],
By default it will register all of the modules, but you can make it only register specific modules using the hatchly.modules
array in your nuxt config:
hatchly: {
modules: [
'pages',
'snippets',
// etc.
],
},
For module specific config options, check the various modules own documentation.