Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

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

  1. Include the plugin in your gatsby-config.js file.
  2. 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,
      },
    },
  ],
}
© 2023 Gatsby, Inc.