|
|
|
|
|
by GrahamL
1407 days ago
|
|
It's interesting their blog post doesn't mention some of the benefits. Neither does the doc page you linked—at least it doesn't do it succinctly. Essentially Astro lets you build sites using a JS framework like React or Vue without requiring that framework to be loaded on the frontend. By default, components are just HTML content. Super nice for building very fast static sites using a technology you may already be fluent in. You can still add interactivity to components if you'd like—just tag components that require interactivity and Astro will bundle the requisite JS for the client. |
|