Next.js #5 - Firebase Hosting

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024
  • Hosting docs: firebase.googl...
    Bluebird: bluebirdjs.com/...

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

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

    Thank you dude! Got my site to hosting with ease, definetly will subscribe as you seem to do so much more cool content

  • @sparktv-co
    @sparktv-co 3 года назад +1

    Thank you, so much easier than anything I've seen out there.

  • @ahnaafarafee
    @ahnaafarafee 3 года назад

    that out command there😲😲😲 It's very very helpful and saved me a bunch of time... Thanks man🔥🔥

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

    Thank you so much for the detailed explanation!😇

  • @dev.caixeiroviajante
    @dev.caixeiroviajante 2 года назад

    Hi there, im using the jenkins pipeline, a cluster in aws, my routes crashs and I receive the 404 page not found when I refresh the pages. Can you help me ?

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

    Hello thanks for the video, I have one question, I have followed all the steps in this video, when the website was deployed it was fine, but when I moved the page for example to the /profile page and when I refreshed the page when just moved, I get a 404 page.

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

    Thanks for this, works for the most part , albeit when I reload the page and I'm not on index.html it says 404 not found . Any advice on how to fix :/ ?

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

      It may just be taking some time to propogate. If there are any errors, you should be able to see them on your Firebase dashboard.

  • @tomascabralhunter7592
    @tomascabralhunter7592 3 года назад

    Great Tutorial, thanks!! :D

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

    Note for people: `next export` will lose some of the functions of NextJS like hot-module replacement, server-side APIs, and stuff since `next export` essentially turns it into a SPA app. Though you will maintain some of other beneficial aspects of NextJS.

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

      Awesome comment, thanks for adding this! I'm sure this will help with some future troubleshooting.

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

      @@ChrisDeSilva yes the 404 that people are getting in the comments below is because the loss of SSR. /pages are no longer nextJs served they are loaded in by React. So those routes need can only be accessed from a link from the index page. I personally think Firebase isn’t the place for nextJs app at least at the moment but to each their own.

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

    Y are the best)

  • @mayurmahajan1503
    @mayurmahajan1503 3 года назад

    From [park].js page can we call api routes (next js apis inside the api folder)? If no, then how do I do client-side render with firebase?

    • @ChrisDeSilva
      @ChrisDeSilva  3 года назад +1

      I haven't tried in this specific case, but it looks like it's possible. Check out github.com/vercel/next.js/tree/canary/examples/api-routes as an example.