Split css
npm install gatsby-plugin-split-cssOverrides the default webpack config to split the css into chunks
``bash`
$ npm install gatsby-plugin-split-css
__Note:__ add this plugin after all PostCSS/Sass/Less plugins.
`javascript
// gatsby-config.js
module.exports = {
plugins: [
gatsby-plugin-split-css``
],
}