Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lekoarts/gatsby-plugin-starter
- Owner: LekoArts
- License: mit
- Created: 2022-07-24T18:38:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-07T09:43:42.000Z (over 2 years ago)
- Last Synced: 2025-01-10T20:54:40.307Z (about 1 month ago)
- Topics: boilerplate, gatsby, gatsby-plugin, template
- Language: TypeScript
- Homepage:
- Size: 1.26 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: .github/README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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",
},
}
```