@draftbox-co/gatsby-wordpress-inline-images
Version:
A Gatsby plugin to turn remote inline images to local static images
6 lines • 331 B
JavaScript
const imageWrapperSelector = `.gatsby-image-wrapper`;
const imageSelector = `${imageWrapperSelector} picture img`;
const imageBackgroundSelector = `${imageWrapperSelector} > img`;
exports.imageWrapperSelector = imageWrapperSelector;
exports.imageSelector = imageSelector;
exports.imageBackgroundSelector = imageBackgroundSelector;