Nuxt 3, Tailwind, and Supabase Crash Course

Поделиться
HTML-код
  • Опубликовано: 8 фев 2025

Комментарии • 19

  • @khairulhaaziq2332
    @khairulhaaziq2332 2 года назад +2

    Jacob your contents are underrated, it is rare to see good programmer's contents. please continue sharing more! especially this stack. I would love it if you get into how to cache the supabase database as usually the latency is high when deploying with vercel

    • @jacobandrewsky
      @jacobandrewsky  2 года назад

      Thank you Khairul, that is so kind of you! I will for sure create more of such content then! :)

  • @mitosymicrochips
    @mitosymicrochips 4 месяца назад

    Dude, your video is awesome. Thanks!

  • @codewithguillaume
    @codewithguillaume 2 года назад +1

    Jacob ! This is my favorite stack :) Thanks for this video my friend !

    • @jacobandrewsky
      @jacobandrewsky  2 года назад +1

      Hi Buddy, thank you so much! I subscribed to your channel for awesome Nuxt content too!

  • @yuriachilles6701
    @yuriachilles6701 8 месяцев назад

    Should I use format=webp at any time ?

    • @jacobandrewsky
      @jacobandrewsky  8 месяцев назад

      Not really. Depend on the users of your website. The better format is avig (more perfromant) but not sure if it is already supported but all major browsers. You can skip setting the format to let the image module set the image format automatically to the one supported by the browser

  • @mtzrmzia
    @mtzrmzia Год назад +1

    Do you know how to avoid fetching again once the page has already been visited? Something like caching previous data and not fetching again...

    • @jacobandrewsky
      @jacobandrewsky  Год назад

      Hey, yes. When you use the useAsyncData or useFetch it will store this result in memory so that when you are trying to fetch the data from the same place it will return a result from cache instead of fetching the data again :)

    • @mtzrmzia
      @mtzrmzia Год назад

      @@jacobandrewsky hi, thanks for reply. I tried but it doesn’t work… could you please do a little demo or an example? I really appreciate it so much

  • @anuj7286
    @anuj7286 2 года назад

    I can't install nuxt 3 by using npx, npm or pnpm. Getting error like can't fetch something. Can you please help me in installation. I've updated everything given in the docs. Thankyou

    • @jacobandrewsky
      @jacobandrewsky  2 года назад +1

      Don't really know what can be causing this as there might be many different problems. Could you please raise an issue in the nuxt repository with detailed explanation and reproduction repository? I am sure community members could help you with that :)
      github.com/nuxt/framework/issues

    • @anuj7286
      @anuj7286 2 года назад

      @@jacobandrewsky sure thanks 👍

    • @anuj7286
      @anuj7286 2 года назад

      @@jacobandrewsky I guess its working now after lot of attempts but still reporting this issue.

  • @Kanexxable
    @Kanexxable Год назад

    There is no representation of nuxt on free code camp can you do a course on nuxt for freeCodeCamp?

    • @jacobandrewsky
      @jacobandrewsky  Год назад

      Hey, thanks for that question! I usually do not do courses because they really fast get outdated due to constant changes to the frameworks. I also believe that there are several other content creators who can create better from zero to hero content than me ;)
      I am fan of this type of content that usually just talks about certain concept instead of explaining how Nuxt works in general.

    • @jacobandrewsky
      @jacobandrewsky  Год назад

      You can check out ruclips.net/channel/UCIr0vkvqiYN3DGs44U5eGsw or www.youtube.com/@AlvaroDevLabs or www.youtube.com/@FullStackJack

  • @leventocakci
    @leventocakci 2 года назад

    tailwind or vuetify i m not sure

    • @jacobandrewsky
      @jacobandrewsky  2 года назад

      My personal opinion would be to go for Tailwind no matter what. But if I would have to think more generally, I would say that it depends on the type of project that you are building. If you care really much about the development time and you have to build something really fast (like a MVP or Proof of Concept), then going for Vuetify might be a good option. But keep in mind that once you will decide to build a product with it, all component libraries will usually cause more problems that they will solve. Also, they will introduce a technical debt that will be very dificult to get rid off. Tailwind requires more work at the start but gives you much more flexibility and it is a generally safer approach in my opinion.