HTML validation using html-validate for NuxtJS
- Zero-configuration required
- Helps reduce hydration errors
- Detects common accessibility mistakes
- Add
@nuxtjs/html-validatoras a dev dependency to your project
yarn add @nuxtjs/html-validator --dev # or npm install @nuxtjs/html-validator --save-dev- Add
@nuxtjs/html-validatorto themodulessection ofnuxt.config.ts
export default defineNuxtConfig({
modules: ['@nuxtjs/html-validator'],
})- Clone this repository
- Install dependencies using
yarn install - Start development server using
yarn dev
