We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dd64e1 commit 9072465Copy full SHA for 9072465
config/WebpackImageSizesPlugin.js
@@ -68,7 +68,12 @@ class WebpackImageSizesPlugin {
68
*/
69
function getTemplateFileNames() {
70
return fs.readdirSync(that._tplFolder).filter((tpl) => {
71
- if (tpl !== 'default-picture.tpl' && tpl !== 'default-picture-caption.tpl') {
+ if (
72
+ tpl !== 'default-picture.tpl' &&
73
+ tpl !== 'default-picture-caption.tpl' &&
74
+ tpl !== 'default-picture-nolazyload.tpl' &&
75
+ tpl !== 'default-picture-nolazyload-caption.tpl'
76
+ ) {
77
return tpl
78
}
79
})
0 commit comments