Skip to content

Commit

Permalink
Update SETUP.md (#22)
Browse files Browse the repository at this point in the history
Add "/" to declare self-closing tags

`meta` and` link` are self-closing tags
  • Loading branch information
vegancat authored May 17, 2023
1 parent 5cfcf50 commit 0ab9a7a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/next-pwa/SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,12 +136,12 @@ Add the following code to your `_app.tsx`'s `<Head />`:

```jsx
<head>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>My awesome PWA app</title>
<meta name="description" content="Best PWA app in the world!">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="mask-icon" href="/icons/mask-icon.svg" color="#FFFFFF">
<meta name="theme-color" content="#ffffff">
<meta name="description" content="Best PWA app in the world!" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="mask-icon" href="/icons/mask-icon.svg" color="#FFFFFF" />
<meta name="theme-color" content="#ffffff" />
<link rel="apple-touch-icon" href="/icons/touch-icon-iphone.png" />
<link
rel="apple-touch-icon"
Expand Down

0 comments on commit 0ab9a7a

Please sign in to comment.