UNPKG

gatsby-plugin-ueno-fix

Version:
46 lines (32 loc) 1.04 kB
# gatsby-plugin-ueno-fix Adds opinionated features to Gatsby. This is a fix for ueno's [`gatsby-plugin-ueno`](https://github.com/ueno-llc/gatsby-plugin-ueno) package that is used with their Gatsby static site generator [`create-ueno-app`](https://github.com/ueno-llc/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 1. Include the plugin in your `gatsby-config.js` file. 2. You're good to go. `gatsby-config.js` ```javascript 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. ```javascript // gatsby-config.js module.exports = { plugins: [ { resolve: `gatsby-plugin-ueno-fix`, options: { classnames: false, }, }, ], } ```