Yassaaa
Explore posts from serversI just need help from the nuxt ai
I am getting this error in browser console after settingup nuxt project:
runtime-core.esm-bundler.js:7013 <Suspense> is an experimental feature and its API will likely change.
hook.js:608 [Vue warn]: Hydration node mismatch:
- rendered on server: <!--[--> (start of fragment)
- expected on client: html
at <App key=4 >
at <NuxtRoot>
overrideMethod @ hook.js:608
hook.js:608 Hydration completed but contains mismatches.
overrideMethod @ hook.js:608
devtools.client.js:49 ✨ Nuxt DevTools Press Shift + Alt + D to open DevTools
16 replies
Help with Tailwind InteliSense in VSCode IDE
I am using VSCode with Tailwind CSS InteliSense extension.
I am not getting any intelisense for tailwind in this project. in my other projects the intelisense works just fine (note they all use the nuxt/tailwind module)
I followed this setup guide: https://tailwindcss.com/docs/installation/framework-guides/nuxt
for this project I wanted to use Tailwind V4 with Nuxt
here is a gist that includes all necessary information such as configurations files and workspace folder-tree: https://gist.github.com/YassaaaTU/c186674afc75042e1cd10429744500cc
31 replies
Need Help with `@nuxt/eslint` + Prettier + TypeScript Rules (Nuxt 3 + Tauri)
Hi everyone,
I'm working on a Nuxt 3 + Tauri project (initially based on the
Project Setup:
- Nuxt version:
- Tauri:
- ESLint version:
- @nuxt/eslint version:
- VSCode as the main editor
What I’m Trying to Achieve:
- A well-integrated ESLint setup using
- Prettier working alongside ESLint without conflicts.
- Enforcing TypeScript-specific rules (e.g.,
- VSCode properly recognizing and applying all formatting/linting rules.
Current Issues:
1. VSCode ESLint Behavior:
- I have
-
-
- ESLint sometimes fails to apply the expected TypeScript rules.
2. Prettier Integration:
- I’m not sure if Prettier is playing well with ESLint.
- Some formatting settings from my
3. TypeScript Rules Not Behaving as Expected:
- Some TypeScript-related rules don’t seem to take effect.
- I get TypeScript rule errors for rules that I explicitly set to
-
- This makes me think my rule overrides aren’t being properly applied.
Any advice or insights would be greatly appreciated! If you’ve successfully set up
I'm working on a Nuxt 3 + Tauri project (initially based on the
nuxtor
template but with significant modifications). I'm trying to properly configure @nuxt/eslint with Prettier while ensuring that TypeScript rules are correctly applied, but I'm running into some issues.Project Setup:
- Nuxt version:
3.16.0
- Tauri:
2.3.0
- ESLint version:
9.0.0
- @nuxt/eslint version:
1.2.0
- VSCode as the main editor
What I’m Trying to Achieve:
- A well-integrated ESLint setup using
@nuxt/eslint
(flat config).- Prettier working alongside ESLint without conflicts.
- Enforcing TypeScript-specific rules (e.g.,
@typescript-eslint
rules).- VSCode properly recognizing and applying all formatting/linting rules.
Current Issues:
1. VSCode ESLint Behavior:
- I have
"eslint.useFlatConfig": true
enabled in my settings.-
"editor.formatOnSave": false
(using ESLint for formatting).-
"editor.codeActionsOnSave"
is commented out to avoid conflicts.- ESLint sometimes fails to apply the expected TypeScript rules.
2. Prettier Integration:
- I’m not sure if Prettier is playing well with ESLint.
- Some formatting settings from my
eslint.config.mjs
(like quotes: backtick
, braceStyle: allman
) don’t seem to be consistently applied.3. TypeScript Rules Not Behaving as Expected:
- Some TypeScript-related rules don’t seem to take effect.
- I get TypeScript rule errors for rules that I explicitly set to
off
, for example:-
'@typescript-eslint/no-explicit-any': 'off'
→ but ESLint still reports an error.- This makes me think my rule overrides aren’t being properly applied.
Any advice or insights would be greatly appreciated! If you’ve successfully set up
@nuxt/eslint
with TypeScript and Prettier, I’d love to hear how you configured it. Thanks in advance! 🚀86 replies
Need help with creating mail templates with dynamic data and sending it
Summary:
My goal is to send order confirmation emails using Nodemailer and Vue for email templates. I have successfully managed to:
1. Send emails using Nodemailer with SMTP.
2. Create email templates using Vue-mail but I did not use nuxt components? im not sure I am new to this nuxt module. Though I was able to use Tailwind in the email template.
However, I am encountering issues when trying to combine these functionalities.
20 replies
Need help with brevo integration
I tried implementing this package: https://www.npmjs.com/package/@getbrevo/brevo as a plugin but it did not work and I got errors. I tried asking gpt and no luck.
can someone help me?
My goal is:
- enter email & some other info in form
- take all this data and send it via the api to brevo to create a contact there.
for debugging I want to also retrieve every entry in a certain list in brevo
here you can find the endpoints for getting all contacts:
https://developers.brevo.com/reference/getcontacts-1
2 replies
useFetch help - not working/fetching data
hey I might be using this completely wrong because im still new to nuxtjs but here goes:
I am trying to use
useFetch
for getting data from https://valorant-api.com but it is not working. When I use old regular fetch
it works with no problems and I don't know why useFetch
is not working with the valorant-api. Because it works with now problem when I use it with the https://fakestoreapi.com/ api.
here is the code:
10 replies