summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--benchmark/make-project/server-stress-default.js8
1 files changed, 6 insertions, 2 deletions
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}"
<body>
<h1>Astro</h1>
<div>
- ${Array.from({ length: 100 }).map(() => '<p>{content}</p>').join('\n')}
+ ${Array.from({ length: 100 })
+ .map(() => '<p>{content}</p>')
+ .join('\n')}
</div>
<div>
- ${Array.from({ length: 50 }).map((_, i) => '<Paragraph num={' + i + '} str={content} />').join('\n')}
+ ${Array.from({ length: 50 })
+ .map((_, i) => '<Paragraph num={' + i + '} str={content} />')
+ .join('\n')}
</div>
</body>
</html>`,