Skip to content

Commit 1a200ae

Browse files
authored
[docs] fixing replace-in-file command and favicon generator tags (#774)
* fixing replace-in-file command * Update favicon generator html for <head>
1 parent 1e64825 commit 1a200ae

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

_chapters/add-app-favicons.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,11 @@ We'll be working exclusively **in the `packages/frontend/` directory** for the r
6666
{%change%} Add this to the `<head>` in your `public/index.html`.
6767

6868
```html
69-
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
70-
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
71-
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
72-
<link rel="manifest" href="/site.webmanifest">
69+
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
70+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
71+
<link rel="shortcut icon" href="/favicon.ico" />
72+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
73+
<link rel="manifest" href="/site.webmanifest" />
7374
<meta name="msapplication-TileColor" content="#da532c">
7475
<meta name="theme-color" content="#ffffff">
7576
<meta name="description" content="A simple note taking app" />

_chapters/create-an-sst-app.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $ cd notes
3737
{%change%} Use your app name in the template.
3838

3939
```bash
40-
$ npx replace-in-file /monorepo-template/g notes **/*.* --verbose
40+
$ npx replace-in-file '/monorepo-template/g' 'notes' '**/*.*' --verbose
4141
```
4242

4343
{%change%} Install the dependencies.

0 commit comments

Comments
 (0)