Created
June 4, 2018 17:06
-
-
Save SaraVieira/5bcd85477d1c43a532a8323b0772c69a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
import fontawesome from '@fortawesome/fontawesome' | |
.... | |
res.send(`<!doctype html> | |
<html lang="en" ${helmet.htmlAttributes.toString()}> | |
<head> | |
${assets.client.css | |
? `<link rel="stylesheet" href="${assets.client.css}">` | |
: '' } | |
${process.env.NODE_ENV === 'production' | |
? `<script src="${assets.client.js}" defer></script>` | |
: `<script src="${assets.client.js}" defer crossorigin></script>`} | |
<style>${fontawesome.dom.css()}</style> | |
</head> | |
<body> | |
<div id="root">${markup}</div> | |
</body> | |
</html>` | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment