Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lekoarts/gatsby-plugin-starter

My personal boilerplate to create a Gatsby plugin
https://github.com/lekoarts/gatsby-plugin-starter

boilerplate gatsby gatsby-plugin template

Last synced: 10 days ago
JSON representation

My personal boilerplate to create a Gatsby plugin

Awesome Lists containing this project

README

        

# @lekoarts/gatsby-plugin-starter

<<>>

## Install

```shell
npm install @lekoarts/gatsby-plugin-starter
```

## How to use

Add the plugin to your `gatsby-config` file:

```js:title=gatsby-config.js
module.exports = {
plugins: [
{
resolve: `@lekoarts/gatsby-plugin-starter`,
options: {}
}
]
}
```

## Plugin Options

- [optionA (**required**)](#optiona-required)
- [optionB](#optionb)

### optionA (**required**)

Example description for optionA.

**Field type**: `String`

```js
{
resolve: `@lekoarts/gatsby-plugin-starter`,
options: {
optionA: "Hello World",
},
}
```

### optionB

Example description for optionB.

**Field type**: `String`

**Default value**: `Hello World`

```js
{
resolve: `@lekoarts/gatsby-plugin-starter`,
options: {
optionB: "Hello World Again",
},
}
```