Cannot use shared utils in vercel workflow
I'm running into an issue when trying to use Vercel Workflows together with Nuxt.
The problem is that shared server utils from /server/utils can't be used inside workflows.
Even though the imports work fine inside Nuxt, the workflow runtime can't resolve the modules at all during local execution. For example i get:
'auth is not defined'
even tho its on my auto imports and working fine outside workflows. I don't get any code errors in visual studio too. He can find the exported variable.
So basically: workflows can't access shared Nuxt server utilities locally, because the workflow runtime can't resolve or load them at runtime.
Just wanted to check if this is a known limitation or if there's any workaround. I really wanted to try workflows...
The problem is that shared server utils from /server/utils can't be used inside workflows.
Even though the imports work fine inside Nuxt, the workflow runtime can't resolve the modules at all during local execution. For example i get:
'auth is not defined'
even tho its on my auto imports and working fine outside workflows. I don't get any code errors in visual studio too. He can find the exported variable.
So basically: workflows can't access shared Nuxt server utilities locally, because the workflow runtime can't resolve or load them at runtime.
Just wanted to check if this is a known limitation or if there's any workaround. I really wanted to try workflows...