Sagar Kapoor
Sagar Kapoor
NNuxt
Created by Sagar Kapoor on 2/11/2025 in #❓・help
nuxt-umami module not found during typecheck despite being installed
nope
18 replies
NNuxt
Created by Sagar Kapoor on 2/11/2025 in #❓・help
nuxt-umami module not found during typecheck despite being installed
@Kairos This should solve the issue for the time being, as mentioned in my comment you will face this issue with other Nuxt modules as well when using pnpm
18 replies
NNuxt
Created by Sagar Kapoor on 2/11/2025 in #❓・help
nuxt-umami module not found during typecheck despite being installed
18 replies
NNuxt
Created by Sagar Kapoor on 2/11/2025 in #❓・help
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
NNuxt
Created by Sagar Kapoor on 2/11/2025 in #❓・help
nuxt-umami module not found during typecheck despite being installed
All right then, I think you should not have to face any problems when using npm as a package manager. I would suggest to test it out for yourself though.
18 replies
NNuxt
Created by Sagar Kapoor on 2/11/2025 in #❓・help
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
NNuxt
Created by Sagar Kapoor on 11/23/2024 in #❓・help
Accessibility ES Lint plugin with Nuxt3
@kapa.ai Is this better?
// @ts-check
import pluginVueA11y from "eslint-plugin-vuejs-accessibility";
import withNuxt from "./.nuxt/eslint.config.mjs";

export default withNuxt({
ignores: ["**/.nuxt/**/*", "**/node_modules/**/*"],
plugins: {
"vuejs-accessibility": pluginVueA11y,
},
rules: {
"vuejs-accessibility/alt-text": "error",
"vuejs-accessibility/anchor-has-content": "error",
"vuejs-accessibility/click-events-have-key-events": "error",
"vuejs-accessibility/form-control-has-label": "error",
"vuejs-accessibility/heading-has-content": "error",

"vue/html-self-closing": [
"warn",
{
html: {
void: "always",
},
},
],
},
});
// @ts-check
import pluginVueA11y from "eslint-plugin-vuejs-accessibility";
import withNuxt from "./.nuxt/eslint.config.mjs";

export default withNuxt({
ignores: ["**/.nuxt/**/*", "**/node_modules/**/*"],
plugins: {
"vuejs-accessibility": pluginVueA11y,
},
rules: {
"vuejs-accessibility/alt-text": "error",
"vuejs-accessibility/anchor-has-content": "error",
"vuejs-accessibility/click-events-have-key-events": "error",
"vuejs-accessibility/form-control-has-label": "error",
"vuejs-accessibility/heading-has-content": "error",

"vue/html-self-closing": [
"warn",
{
html: {
void: "always",
},
},
],
},
});
19 replies
NNuxt
Created by Sagar Kapoor on 11/23/2024 in #❓・help
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
NNuxt
Created by Sagar Kapoor on 11/23/2024 in #❓・help
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
NNuxt
Created by Luc on 8/29/2024 in #❓・help
Nuxt Scripts: Google Tag Manager + Consent Management
Were you able to make the cookie consent persistent across different sessions though?
5 replies
NNuxt
Created by Luc on 8/29/2024 in #❓・help
Nuxt Scripts: Google Tag Manager + Consent Management
@Luc Thanks!
5 replies
NNuxt
Created by Sagar Kapoor on 10/30/2024 in #❓・help
Nuxt SiteMap
@kapa.ai You can either prerender these pages and they'll be discovered automatically or setup an endpoint which returns them How to do this?
14 replies
NNuxt
Created by Sagar Kapoor on 10/30/2024 in #❓・help
Nuxt SiteMap
@kapa.ai How do I configure Nuxt sitemap to index static file-based dynamic pages located in my pages directory without using an API?
14 replies
NNuxt
Created by Sagar Kapoor on 10/19/2024 in #❓・help
How to password protect a site?
Thanks a lot!
3 replies
NNuxt
Created by magius on 10/1/2024 in #❓・help
Error @nuxtjs/mdc on reload
I am using pnpm instead of npm and this solution is still working!
23 replies
NNuxt
Created by magius on 10/1/2024 in #❓・help
Error @nuxtjs/mdc on reload
PS: Thanks, it works perfectly!
23 replies
NNuxt
Created by magius on 10/1/2024 in #❓・help
Error @nuxtjs/mdc on reload
Thanks, a quick question, will MDC be able to render Markdown content in a stringified form?
23 replies
NNuxt
Created by magius on 10/1/2024 in #❓・help
Error @nuxtjs/mdc on reload
I am receiving the same issue!
23 replies
NNuxt
Created by Sagar Kapoor on 9/6/2024 in #❓・help
Responsive Header Menu
From what I read it is not a good practice to change anything in the Body element like I am doing in the above code.
3 replies
NNuxt
Created by Sagar Kapoor on 9/6/2024 in #❓・help
Responsive Header Menu
Should I use teleport to solve this issue?
3 replies