Two Forms of Pre-rendering
5 min read
Kost kerap jadi pilihan hunian bagi yang merantau atau ingin tinggal lebih dekat dengan kampus ataupun kantor. Biasanya, kost-kostan terbagi tiga tipe, yaitu kost campur, kost putra, dan dan kost putri. Bagi perempuan, memilih tinggal di kost putri tentu saja terasa lebih safety dan nyaman. Namun, memilih kost putri yang berfasilitas lengkap, harga terjangkau, dan lokasi strategis memang agak tricky! Untungnya, Kita punya beberapa kost putri dengan fasilitas ideal untukmu yang ingin tinggal lebih nyaman. Penasaran di mana saja lokasi kost putri dekat kampus? Yuk, intip berikut ini!
Baca Juga: Cari Kost Khusus Putri di BSD? Ini 5 RekomendasinyaNext.js has two forms of pre-rendering: Static Generation and Server-side Rendering. The difference is in when it generates the HTML for a page.
- Static Generation is the pre-rendering method that generates the HTML at build time. The pre-rendered HTML is then reused on each request.
- Server-side Rendering is the pre-rendering method that generates the HTML on each request.
Importantly, Next.js lets you choose which pre-rendering form to use for each page. You can create a "hybrid" Next.js app by using Static Generation for most pages and using Server-side Rendering for others.