Skip to content

Commit

Permalink
fix: do not escape links
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Moore committed Mar 2, 2022
1 parent 6479566 commit b499ffd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/astro/src/runtime/server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ export async function renderHead(result: SSRResult) {
}
const links = Array.from(result.links)
.filter(uniqueElements)
.map((link) => renderElement('link', link));
.map((link) => renderElement('link', link, false));
return unescapeHTML(links.join('\n') + styles.join('\n') + scripts.join('\n') + '\n' + '<!--astro:head:injected-->');
}

Expand Down

0 comments on commit b499ffd

Please sign in to comment.