Description
Describe the problem
If I have a large component that I know will be static, like this:
<script>
const episodes = [{name: 'foo', length: '10:00'}, /* ... 100 more episodes */];
</script>
<ul>
{#each episodes as episode}
<li>{episode.name} - {episode.length}</li>
{/each}
</ul>
I don't want the large array to be included in my js bundle if it's never going to change from when my page is rendered.
Describe the proposed solution
I want to be able to add this:
<svelte:options static={true} />
to hint to svelte that it can prerender my markup and render the whole component to a static template.
Importance
nice to have