Skip to content

Commit

Permalink
Merge pull request #1783 from RunDevelopment/meta-charset
Browse files Browse the repository at this point in the history
Ensure meta charSet is within first 1024 bytes
  • Loading branch information
Gerrit0 committed Nov 7, 2021
2 parents fc8bdf3 + 8d63204 commit 5957675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/output/themes/default/layouts/default.tsx
Expand Up @@ -6,8 +6,8 @@ import type { DefaultThemeRenderContext } from "../DefaultThemeRenderContext";
export const defaultLayout = (context: DefaultThemeRenderContext, props: PageEvent<Reflection>) => (
<html class="default">
<head>
{context.hook("head.begin")}
<meta charSet="utf-8" />
{context.hook("head.begin")}
<meta http-equiv="x-ua-compatible" content="IE=edge" />
<title>
{props.model.name === props.project.name
Expand Down

0 comments on commit 5957675

Please sign in to comment.