Skip to content

Commit

Permalink
Merge pull request zuiidea#277 from zuiidea/develop
Browse files Browse the repository at this point in the history
favicon
  • Loading branch information
zuiidea authored May 11, 2017
2 parents 2c74295 + c7789f1 commit 19e07ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@ const App = ({ children, location, dispatch, app, loading }) => {
return <div>{children}</div>
}

const { iconFontJS, iconFontCSS } = config
const { iconFontJS, iconFontCSS, logo } = config

return (
<div>
<Helmet>
<title>ANTD ADMIN</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href={config.logoSrc} type="image/x-icon" />
<link rel="icon" href={logo} type="image/x-icon" />
{iconFontJS && <script src={iconFontJS}></script>}
{iconFontCSS && <link rel="stylesheet" href={iconFontCSS} />}
</Helmet>
Expand Down

0 comments on commit 19e07ae

Please sign in to comment.