diff options
Diffstat (limited to 'benchmark/make-project/mdx-cc2.js')
-rw-r--r-- | benchmark/make-project/mdx-cc2.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/benchmark/make-project/mdx-cc2.js b/benchmark/make-project/mdx-cc2.js index ab6ddeb3b..f50b63c9e 100644 --- a/benchmark/make-project/mdx-cc2.js +++ b/benchmark/make-project/mdx-cc2.js @@ -23,7 +23,7 @@ ${loremIpsumMd} `; promises.push( - fs.writeFile(new URL(`./data/blog/article-${i}.mdx`, projectDir), content, 'utf-8') + fs.writeFile(new URL(`./data/blog/article-${i}.mdx`, projectDir), content, 'utf-8'), ); } @@ -39,7 +39,7 @@ ${loremIpsumMd} export const collections = { blog } - ` + `, ); await fs.writeFile( @@ -60,7 +60,7 @@ const { Content } = await render(entry); <h1>{entry.data.title}</h1> <Content /> `, - 'utf-8' + 'utf-8', ); await Promise.all(promises); @@ -75,6 +75,6 @@ import mdx from '@astrojs/mdx'; export default defineConfig({ integrations: [mdx()], });`, - 'utf-8' + 'utf-8', ); } |