Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

Latest commit

 

History

History
46 lines (33 loc) · 1.33 KB

README.md

File metadata and controls

46 lines (33 loc) · 1.33 KB

@netsells/nuxt-hatchly

Nuxt module for integrating with Hatchly-based web platforms

Created and maintained by the Netsells team

Features

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

Usage

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.