gatsby-plugin-ueno-fix
v2.1.3
Published
Adds opinionated features to Gatsby
Downloads
1
Readme
gatsby-plugin-ueno-fix
Adds opinionated features to Gatsby.
This is a fix for ueno's gatsby-plugin-ueno
package that is used with their Gatsby static site generator create-ueno-app
. In my site build this package was giving constant errors. This is an attempt to resolve the build errors and help those with the same issue.
Install
npm install gatsby-plugin-ueno-fix --save
OR
yarn add gatsby-plugin-ueno-fix
How to use
- Include the plugin in your
gatsby-config.js
file. - You're good to go.
gatsby-config.js
module.exports = {
// ...,
plugins: [...`gatsby-plugin-ueno-fix`],
}
Options
When adding this plugin to your gatsby-config.js
, you can pass in options to enable/disable features as you like.
// gatsby-config.js
module.exports = {
plugins: [
{
resolve: `gatsby-plugin-ueno-fix`,
options: {
classnames: false,
},
},
],
}