Skip to content

Commit

Permalink
[docs] fixing replace-in-file command and favicon generator tags (#774)
Browse files Browse the repository at this point in the history
* fixing replace-in-file command

* Update favicon generator html for <head>
  • Loading branch information
ttarabbia authored Dec 28, 2024
1 parent 1e64825 commit 1a200ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions _chapters/add-app-favicons.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,11 @@ We'll be working exclusively **in the `packages/frontend/` directory** for the r
{%change%} Add this to the `<head>` in your `public/index.html`.

```html
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta name="description" content="A simple note taking app" />
Expand Down
2 changes: 1 addition & 1 deletion _chapters/create-an-sst-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ $ cd notes
{%change%} Use your app name in the template.

```bash
$ npx replace-in-file /monorepo-template/g notes **/*.* --verbose
$ npx replace-in-file '/monorepo-template/g' 'notes' '**/*.*' --verbose
```

{%change%} Install the dependencies.
Expand Down

0 comments on commit 1a200ae

Please sign in to comment.