diff --git a/benchmark/make-project/server-stress-default.js b/benchmark/make-project/server-stress-default.js index cbeeeda3b..79e8b260a 100644 --- a/benchmark/make-project/server-stress-default.js +++ b/benchmark/make-project/server-stress-default.js @@ -27,10 +27,14 @@ const content = "${loremIpsum}"

Astro

- ${Array.from({ length: 100 }).map(() => '

{content}

').join('\n')} + ${Array.from({ length: 100 }) + .map(() => '

{content}

') + .join('\n')}
- ${Array.from({ length: 50 }).map((_, i) => '').join('\n')} + ${Array.from({ length: 50 }) + .map((_, i) => '') + .join('\n')}
`,