Skip to content

Commit

Permalink
Fix PostCSS warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Aug 14, 2019
1 parent 537256a commit dab82a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function inlineImages(opts) {
};
debug('inlineImages', inlineOptions);
return postcss([imageInliner(inlineOptions)])
.process(vinyl.contents.toString('utf8'))
.process(vinyl.contents.toString('utf8'), {from: undefined})
.then(contents => {
vinyl.contents = Buffer.from(contents.css);
return vinyl;
Expand Down

0 comments on commit dab82a4

Please sign in to comment.