snipette-gridsome/src/filters/changeUrls.js
Hippo 16bcaaf54b Enable image redirects
Images can now go directly to media.snipettemag.com instead of
being routed through the private Ghost instance. (Reduces traffic
on that node).
2019-12-19 22:01:35 +05:30

11 lines
316 B
JavaScript

const config = require('../../gridsome.config.js');
export default string => {
if (config.mediaUrlFrom && config.mediaUrlTo && string) {
var processedString = string.replace(new RegExp(config.mediaUrlFrom, 'g'), config.mediaUrlTo);
} else {
var processedString = string;
}
return processedString;
}