Is it possible to prerender a page when using a <script> tag with some client side js library? I'm trying to create a calendar app, using this - https://github.com/year-calendar/js-year-calendar/. It uses vanilla JS to hook onto some element and create a calendar. Is it possible to prerender that? Currently the index.astro file looks like this (omitted some parts for brevity):
<body>
<div class="calendar"></div>
</body>
<script>
import Calendar from "js-year-calendar";
new Calendar(".calendar");
</script>