Skip to content
This repository has been archived by the owner on Jul 5, 2019. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
improvements to improve lighthouse score
  • Loading branch information
bdougie committed Jun 5, 2017
1 parent f6b8e65 commit 538afe7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions public/index.html
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#000000">
<!--
manifest.json provides metadata used when your web app is added to the
Expand All @@ -19,7 +19,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>React Hacker News</title>
</head>
<body>
<noscript>
Expand Down
2 changes: 1 addition & 1 deletion src/App.js
Expand Up @@ -8,7 +8,7 @@ const StoryItem = ({ item }) => {
if(item && !item.isFetching){
content = (
<p>
<a href={item.url} target="_blank">
<a rel="noopener" href={item.url} target="_blank">
{item.title}
</a>
{item.url &&
Expand Down

0 comments on commit 538afe7

Please sign in to comment.