@ariada-org/gatsby-plugin
v0.1.0
Published
Gatsby plugin that scans public build output with Ariada accessibility checks.
Downloads
85
Maintainers
Readme
Ariada Gatsby Plugin
Gatsby plugin that runs after build and scans the generated public/ HTML with
Ariada. It reuses @ariada-org/vite-plugin static HTML scanning.
Official contract checked during implementation:
- Gatsby plugins can export Node APIs from
gatsby-node.js; those APIs respond to build lifecycle events. Source: https://www.gatsbyjs.com/docs/reference/config-files/gatsby-node/
export default {
plugins: [
{
resolve: '@ariada-org/gatsby-plugin',
options: { failOn: 'serious' },
},
],
};