Sagar Kapoor
nuxt-umami module not found during typecheck despite being installed
And then this one (I am sharing my reply):
https://github.com/dword-design/nuxt-mail/issues/227#issuecomment-2602231228
18 replies
nuxt-umami module not found during typecheck despite being installed
I did solve this issue by the way, so to undestand what is actually going on, you should check this issue first:
https://github.com/dword-design/nuxt-mail/issues/227
18 replies
nuxt-umami module not found during typecheck despite being installed
A few things to consider here,
1. have you tested this module out on the said project?
2. Are you using
pnpm
or npm
3. Have you actually encountered any problems? If so are they during the linting part?18 replies
Accessibility ES Lint plugin with Nuxt3
@kapa.ai Where can I read more about this?
To incorporate the eslint-plugin-vuejs-accessibility plugin, you would modify this structure like so:
import withNuxt from './.nuxt/eslint.config.mjs'
import pluginVueA11y from "eslint-plugin-vuejs-accessibility";
export default withNuxt(
// your custom flat configs go here
{
plugins: {
'vuejs-accessibility': pluginVueA11y
},
rules: {
// Your custom rules here
"vuejs-accessibility/alt-text": "error",
// ... other rules
}
}
)
19 replies
Accessibility ES Lint plugin with Nuxt3
@kapa.ai Why does the official doc have spread operator then?
import pluginVueA11y from "eslint-plugin-vuejs-accessibility";
export default [
// add more generic rulesets here, such as:
// js.configs.recommended,
...pluginVueA11y.configs["flat/recommended"],
{
rules: {
// override/add rules settings here, such as:
// "vuejs-accessibility/alt-text": "error"
}
}
];
19 replies