From 62ca37884af11dacca51ef35c43a7f4805c91c5f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 27 May 2017 16:55:09 +0200 Subject: 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 --- config/webpack/shared.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'config/webpack') diff --git a/config/webpack/shared.js b/config/webpack/shared.js index 1d75e2af2..12e05dec2 100644 --- a/config/webpack/shared.js +++ b/config/webpack/shared.js @@ -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; }, }), -- cgit