Skip to content

Commit

Permalink
Just use raw links to paths
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleAMathews committed Jul 2, 2017
1 parent 25af58b commit cbb69c3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions www/src/html.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,25 +54,25 @@ export default class HTML extends React.Component {
content="width=device-width, initial-scale=1.0"
/>
<link
rel="app-touch-icon"
rel="apple-touch-icon"
sizes="180x180"
href={require(`file-loader!../static/apple-touch-icon.png`)}
href={`/apple-touch-icon.png`}
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href={require(`file-loader!../static/favicon-32x32.png`)}
href={`/favicon-32x32.png`}
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href={require(`file-loader!../static/favicon-16x16.png`)}
href={`/favicon-16x16.png`}
/>
<link
rel="mask-icon"
href={require(`file-loader!../static/safari-pinned-tab.svg`)}
href={`/safari-pinned-tab.svg`}
color="#5bbad5"
/>
<TypographyStyle key={`typography`} typography={typography} />
Expand Down

0 comments on commit cbb69c3

Please sign in to comment.