mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-23 15:41:32 +00:00
prevent hanging with large numbers of links (#604)
This commit is contained in:
7
test/apps/export/src/routes/boom/index.svelte
Normal file
7
test/apps/export/src/routes/boom/index.svelte
Normal file
@@ -0,0 +1,7 @@
|
||||
<script>
|
||||
const list = Array(20).fill().map((_, i) => i + 1);
|
||||
</script>
|
||||
|
||||
{#each list as a}
|
||||
<a href="boom/{a}">{a}</a>
|
||||
{/each}
|
||||
Reference in New Issue
Block a user