This plugin has been deprecated. We move the content of this plugin directly into our Ueno Gatsby Starter.
Adds opinionated features to Gatsby
npm install gatsby-plugin-ueno --save
OR
yarn add gatsby-plugin-ueno
- Include the plugin in your
gatsby-config.js
file. - You're good to go.
gatsby-config.js
module.exports = {
// ...,
plugins: [...`gatsby-plugin-ueno`],
}
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`,
options: {
classnames: false,
},
},
],
}