in dev mode always pull manifest on each request add manifest build to gulp build task add react bundle to manifest generation
27 lines
838 B
JavaScript
27 lines
838 B
JavaScript
import manifest from '../rev-manifest.json';
|
|
|
|
const __DEV__ = process.env.NODE_ENV === 'development';
|
|
export default function({ globalPrepend = '' } = {}) {
|
|
|
|
function rev(manifest, scopedPrepend, asset) {
|
|
return `${globalPrepend}${scopedPrepend}/${ manifest[asset] || asset }`;
|
|
}
|
|
const boundRev = rev.bind(null, manifest);
|
|
|
|
return function(req, res, next) {
|
|
// in dev environment, we reread the manifest on every call
|
|
// this means we do not need to restart server on every change to
|
|
// client code
|
|
if (__DEV__) {
|
|
const manifest = require('../rev-manifest.json');
|
|
res.locals.rev = rev.bind(null, manifest);
|
|
return next();
|
|
}
|
|
|
|
// in production we take use the initially loaded manifest
|
|
// since this should not change in production
|
|
res.locals.rev = boundRev;
|
|
next();
|
|
};
|
|
}
|