Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
143 views

i'm currently building a blog that get it's content from Storyblok API. i want my blog to be full static and for that i use the "npm run generate" that work almost as i want. There's one ...
oldBeaver's user avatar
-1 votes
1 answer
127 views

Background I’m building an app using Nuxt 3 and Vue 3 (Node v20.18.0). I’m running into a fundamental issue with template reactivity when trying to display data fetched with useFetch. Specifically: I ...
John's user avatar
  • 9,514
0 votes
0 answers
120 views

I am trying to deploy a Nuxt3 app on AWS Amplify using routeRules to assign different rendering modes to different pages. The build process succeeds, but in my cloudwatch logs, it always gives the ...
Thomas Hart's user avatar
0 votes
1 answer
99 views

The issue is that my view is not re-rendering nor is useFetch re-running when a pagination link is clicked. I suspect this is something to do with data reactivity in Nuxt - which is new to me. I have ...
Jamie Dunbar's user avatar
0 votes
0 answers
38 views

I have a very simple dynamic route. The page is in the following directory: ~/pages/explore/initiative/[id].vue When I navigate to that page via NuxtLink, it seems to be making the request several ...
John's user avatar
  • 9,514
1 vote
0 answers
126 views

I am using VS Code for Nuxt 3 development and my problem is that since Nuxt 3.11 the code lines are not displayed and linked to the code position in the "debug console" anymore and objects ...
stratoxx's user avatar
0 votes
1 answer
37 views

I have created a global auth middleware but need to check if you are going to any route in /dashboard and its subroutes like /dashboard/account or /dashboard/settings. The middleware below is a very ...
Calvin Coleman's user avatar
0 votes
1 answer
66 views

I need to get the Full Host, I am creating an API endpoint at ~/server/api/test but with event on defineEventHandler is just giving me for example only localhost host but without port. I am trying ...
user28435498's user avatar
0 votes
1 answer
497 views

For the last few days I've been trying to configure an Azure Web App using Node as runtime stack. All the guides out there talks about Static Web Apps but that does not suit my needs. I use Github ...
tomfri's user avatar
  • 5
0 votes
1 answer
43 views

Trying to generate a project with posts where data is fetched from an api. In nuxt.config I have the following settings: (edit: added interval and concurrency to prerender settings after reading about ...
martinval's user avatar
  • 532
1 vote
1 answer
587 views

I want to proxy WebSocket Connections through a Nuxt 3 Nitro Server to enrich it with Session information for authentication. I managed to get it working to a point, where the server intercepts the ...
kSp's user avatar
  • 334
0 votes
1 answer
122 views

I'm trying to eliminate all the semi-colons of my Vue project and I've searched how to do it with eslint command line. I've fount this pattern : eslint --no-eslintrc --fix --rule 'rule definition here'...
CBD's user avatar
  • 107
0 votes
1 answer
85 views

I would like to know if there is a way to edit the text value of the years in v-date-picker in vuetify 3? I would like to add 'test' string beside the year value. So instead of only '2021' it would be ...
Dionico Noe C. Alegarbes's user avatar
-1 votes
1 answer
103 views

i use Nuxt3 I have an /components/icons folder Inside the /components/icons there are many icons : /components/icons/apps.vue /components/icons/arrow-up.vue /components/icons/bookmark.vue /components/...
none's user avatar
  • 101
1 vote
0 answers
70 views

I'm trying to create a layout that applies only to pages within a specific route group in Nuxt 3, but I'm running into several issues with different approaches. Current Setup My current directory ...
Syed's user avatar
  • 16.6k
2 votes
1 answer
217 views

In Nuxt 3, imports can reference the project root using either ~ or @, for example: import SubHeader from "@/components/SubHeader.vue" vs import SubHeader from "~/components/SubHeader....
Matt Sanders's user avatar
  • 11.5k
0 votes
0 answers
32 views

I have an ASP.NET Core api which does authentication (username and password, google, injects jwt into cookies). I want to use that server for authentication in my nuxt app. Right now, I'm trying to ...
Hossein Ebrahimi's user avatar
0 votes
0 answers
644 views

So I have been working on a project management tool's dashboard overview, where users can filter projects, statuses, due dates, etc. As the project list is a bit larger, I decided to add a filter in ...
tawsifahmed's user avatar
0 votes
1 answer
362 views

I have an ASP.NET Core + nuxt setup, and trying to proxy requests that start with /api to the ASP.NET Core Web API (https://localhost:7132/weatherforecast for now). There's a Youtube video on how to ...
Hossein Ebrahimi's user avatar
0 votes
0 answers
145 views

I'm trying to send an OTP code via sendgrid as part of MFA. I followed these steps described here. But when I navigate to localhost:3000 to test the OTP, trying to login with my credentials. Nothing ...
Quoter's user avatar
  • 4,310
0 votes
1 answer
192 views

I have a form with this structure. If I group the addressfields inside an own object in the data and schema object it doesn't works. // works const formData = ref({ email: "", firstName: ...
Gregor's user avatar
  • 2,283
0 votes
1 answer
42 views

I'm trying to authenticate using Keycloak JS in a nuxt project, so I defined a plugin like so : // plugins/keycloakjs.client.ts import Keycloak, { KeycloakConfig } from "keycloak-js"; ...
Double Bang's user avatar
1 vote
1 answer
692 views

I have these two functions and I think they are identical. However, it seems that the useLazyAsyncData function does not trigger the API call upon the first load; it only does so if I navigate away ...
Omar Mir's user avatar
  • 1,654
0 votes
2 answers
199 views

When running the project on local whether in dev or prod mode using whether npm run dev or npm run build followed by npm run preview respectively it works just fine on my local machine, When deploying ...
ALLAOUA Okba's user avatar
0 votes
2 answers
73 views

I'm making my ui library. I want to make it a nuxt module. I used sass in the components. When doing "nuxt-module-build" I get an error. I follow the syntax. src/runtime/components/Button....
Максим Нивейкин's user avatar

1
3 4
5
6 7
53