mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-29 18:16:17 +01:00
fix: #6922, skin assets not including plugin LESS files
This commit is contained in:
@@ -210,9 +210,10 @@ middleware.buildSkinAsset = function (req, res, next) {
|
||||
// If this middleware is reached, a skin was requested, so it is built on-demand
|
||||
var target = path.basename(req.originalUrl).match(/(client-[a-z]+)/);
|
||||
if (target) {
|
||||
meta.css.buildBundle(target[0], true, function () {
|
||||
next();
|
||||
});
|
||||
async.waterfall([
|
||||
async.apply(plugins.prepareForBuild, ['client side styles']),
|
||||
async.apply(meta.css.buildBundle, target[0], true),
|
||||
], next);
|
||||
} else {
|
||||
setImmediate(next);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user