An open API service indexing awesome lists of open source software.

https://github.com/netsells/nuxt-hatchly-module

Nuxt module providing helpful Hatchly integration functions
https://github.com/netsells/nuxt-hatchly-module

Last synced: 5 months ago
JSON representation

Nuxt module providing helpful Hatchly integration functions

Awesome Lists containing this project

README

        

# @netsells/nuxt-hatchly

> Nuxt module for integrating with Hatchly-based web platforms

Created and maintained by the [Netsells team](https://netsells.co.uk/)

## Features

This module sets up the various official hatchly Nuxt integration modules:

* [@hatchly/nuxt-files-module](https://npmjs.com/package/@hatchly/nuxt-files-module)
* [@hatchly/nuxt-navigation-module](https://npmjs.com/package/@hatchly/nuxt-navigation-module)
* [@hatchly/nuxt-newsletter-module](https://npmjs.com/package/@hatchly/nuxt-newsletter-module)
* [@hatchly/nuxt-pages-module](https://npmjs.com/package/@hatchly/nuxt-pages-module)
* [@hatchly/nuxt-redirects-module](https://npmjs.com/package/@hatchly/nuxt-redirects-module)
* [@hatchly/nuxt-snippets-module](https://npmjs.com/package/@hatchly/nuxt-snippets-module)

## Usage

Install the dependencies using the following command:

```sh
yarn add @netsells/nuxt-hatchly
```

Add the module to your `modules` array in your nuxt config file:

```js
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:

```js
hatchly: {
modules: [
'pages',
'snippets',
// etc.
],
},
```

For module specific config options, check the various modules own documentation.