Antoine Frankart

Results 17 comments of Antoine Frankart

I tried and unfortunately not

Any news on this subject? (and what about Nuxt3 support?)

I tried your example @steve-chavez and it works like a charm So I wanted to create my own function: ```sql create or replace function update_blocks_order(payload json) returns setof page_blocks as...

Finally I did it, thanks to the function: ```sql create or replace function update_blocks_order(payload json) returns setof page_blocks as $$ update page_blocks as p set display_order = x.display_order from (...

A quote from this discussion in the Nuxt repo: > `require` is not supported in Vite, and indeed in general you should avoid using require as Nuxt 3 [targets an...

Any change on this subject?

I have exactly the same problem since I updated my dependencies some days ago. What can we do to fix that?

On the Nuxt3 Discord server someone game me the solution: In nuxt.config.ts ```js build: { transpile: ['@supabase', 'cross-fetch'] } ``` But now I have this error https://github.com/lquixada/cross-fetch/issues/108. I think this...

Thank for your answer. At the end, I have just removed both transpile and it's now working `transpile : ['@supabase', 'cross-fetch']` For the Supabase integration, I'm using what Atinux, the...

Did you fix that @stolinski and @benwoodward? I have the same error with Nuxt3.