Skip to content

Commit

Permalink
style: fix broken indent
Browse files Browse the repository at this point in the history
  • Loading branch information
kiaking committed Sep 4, 2020
1 parent 2e8e1f5 commit 5538af6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/node/build/render.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ export async function renderPage(
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>${pageData.title ? pageData.title + ` | ` : ``}${
siteData.title
}</title>
<title>
${pageData.title ? pageData.title + ` | ` : ``}${siteData.title}
</title>
<meta name="description" content="${siteData.description}">
<link rel="stylesheet" href="${assetPath}${cssChunk.fileName}">
${preloadLinks}
Expand Down

0 comments on commit 5538af6

Please sign in to comment.