0
0
Fork 0

Fix #2922 - Load stylesheet from "custom.css" entrypoint when present (#3332)

* Fix #2922 - Load stylesheet from "custom.css" entrypoint when present

This is pretty much the same way it worked as before, albeit with
having to create app/javascript/packs/custom.js with
require('../styles/custom.scss') (or whatever you want really), which
will be a blank slate for you to import whatever you want

* Remove old assets directory

* Extract font-awesome into common.css and always load it
This commit is contained in:
Eugen Rochko 2017-05-27 16:55:09 +02:00 committed by GitHub
parent f9180823bc
commit 62ca37884a
5 changed files with 25 additions and 7 deletions

View file

@ -53,6 +53,12 @@ module.exports = {
// be loaded together
return false;
}
if (module.resource && /node_modules\/font-awesome/.test(module.resource)) {
// extract vendor css into common module
return true;
}
return count >= 2;
},
}),