Skip to content

Commit

Permalink
React Loadable example: add css chunks (#746)
Browse files Browse the repository at this point in the history
  • Loading branch information
tatchi authored and jaredpalmer committed Sep 8, 2018
1 parent ad25c6b commit 08f0856
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/with-react-loadable/src/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ server
} else {
const bundles = getBundles(stats, modules);
const chunks = bundles.filter(bundle => bundle.file.endsWith('.js'));
const styles = bundles.filter(bundle => bundle.file.endsWith('.css'));

res.status(200).send(
`<!doctype html>
Expand All @@ -43,6 +44,11 @@ server
? `<link rel="stylesheet" href="${assets.client.css}">`
: ''
}
${styles
.map(style => {
return `<link href="${style.file}" rel="stylesheet"/>`;
})
.join('\n')}
</head>
<body>
<div id="root">${markup}</div>
Expand Down

0 comments on commit 08f0856

Please sign in to comment.