Skip to content

Commit

Permalink
[examples] Fix broken path to favicon.ico (#33906)
Browse files Browse the repository at this point in the history
  • Loading branch information
vegancat committed Aug 13, 2022
1 parent ad36afc commit e88750f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -12,7 +12,7 @@ export default class MyDocument extends Document {
<Head>
{/* PWA primary color */}
<meta name="theme-color" content={theme.palette.primary.main} />
<link rel="shortcut icon" href="/static/favicon.ico" />
<link rel="shortcut icon" href="/favicon.ico" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
Expand Down
2 changes: 1 addition & 1 deletion examples/nextjs-with-typescript/pages/_document.tsx
Expand Up @@ -11,7 +11,7 @@ export default class MyDocument extends Document {
<Head>
{/* PWA primary color */}
<meta name="theme-color" content={theme.palette.primary.main} />
<link rel="shortcut icon" href="/static/favicon.ico" />
<link rel="shortcut icon" href="/favicon.ico" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
Expand Down
2 changes: 1 addition & 1 deletion examples/nextjs/pages/_document.js
Expand Up @@ -11,7 +11,7 @@ export default class MyDocument extends Document {
<Head>
{/* PWA primary color */}
<meta name="theme-color" content={theme.palette.primary.main} />
<link rel="shortcut icon" href="/static/favicon.ico" />
<link rel="shortcut icon" href="/favicon.ico" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
Expand Down

0 comments on commit e88750f

Please sign in to comment.