hackal
Explore posts from serversuseFetch not updating data ref when new request is triggered.
This is my simplified version of composable
I have the following issue. I call the composable in two components and pass the same id (ref) as arg
const { data } = await useProject(projectId)
when the projectId changes I see that useFetch will fire two requests however watch(data, (updated) => {
is called only in one instance. Why that could be?19 replies
Plugins not automatically typed
Hi,
Having issues with automatically typing my plugins. Here is my plugin.
When I do full text search in my project folder I do not see any generated type for
$api
, $orgApi
or $operatorAPI
.
Is there any other you need to help me debug this? Overall I'm having a terrible experience with TS+Nuxt+WebStorm.8 replies
Automatic typing of plugins
I have copied 1:1 this https://nuxt.com/docs/guide/recipes/custom-usefetch and I noticed that
useNuxtApp().$api
is not typed and doing cmd+click will send me to node_modules/nuxt/dist/app/nuxt.d.ts
-> interface _NuxtApp
.
How/where can I check the auto generated types for plugins? I want to see if the issue is with my language server or the type generation.1 replies
Hard time with getting cookies from server to browser
Hi, I have my own REST api with my own JWT+refresh token authentication. I have decided to have a proxy via nuxt server to my API and now i'm trying to implement the refresh token logic for auth.
I have implemented simple proxy that also handles the refresh logic but I am having hard time saving the new credentials back to cookies from server to browser where they are stored originally. Am I missing something? Thanks for help.
Simple example:
app.vue
server/api/[...route].ts
2 replies
Issue with Total Blocking Time in performance metrics in pagespeed
Hi, I'm trying to improve the score on pagespeed but I'm consistently getting Total Blocking Time with 10s+ (50s+ on mobile).
https://pagespeed.web.dev/analysis/https-acreom-com/mgnzvfu4vc?form_factor=desktop
Only thing it says it that I should minimize main thread work (which took 34seconds).
The site is 99% static, with little bit of js for some interactivity.
Thanks in advance for any help/suggestions.
Hosted with netlify, nuxt version 3.4.2
3 replies