Skip to content

Commit

Permalink
fix(remix): ensure default meta tags are always present for generated…
Browse files Browse the repository at this point in the history
… applications #23037
  • Loading branch information
Coly010 committed May 3, 2024
1 parent e06b787 commit 0cbef53
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -9,15 +9,15 @@ import {
} from "@remix-run/react";

export const meta: MetaFunction = () => ([{
charset: "utf-8",
title: "New Remix App",
viewport: "width=device-width,initial-scale=1",
}]);

export default function App() {
return (
<html lang="en">
<head>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<Meta />
<Links />
</head>
Expand Down

0 comments on commit 0cbef53

Please sign in to comment.