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
- Host: GitHub
- URL: https://github.com/netsells/nuxt-hatchly-module
- Owner: netsells
- Created: 2018-07-14T11:54:28.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-06-29T09:15:25.000Z (almost 2 years ago)
- Last Synced: 2023-06-29T12:27:58.885Z (almost 2 years ago)
- Language: JavaScript
- Size: 723 KB
- Stars: 0
- Watchers: 7
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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.