I'm working on a project in Gatsby and don't want to mess about with the canned webpack configuration it provides just to load a couple of images.
So I want to use this loader with an import line in the JS file alone, and configure it with query strings.
Is this possible?
So far I'm trying
importimagefrom'sharp-loader!./test.png?{"outputs":[{"format": "jpg"}]}'I was hoping this would simply convert the PNG to a JPEG. Ideally I want to specify quality level and have it optimized too.
I'm getting
TypeError: Cannot read property 'context' of null
at Object.module.exports ([...]/node_modules/sharp-loader/dist/sharp.js:232:29)
I'm working on a project in Gatsby and don't want to mess about with the canned webpack configuration it provides just to load a couple of images.
So I want to use this loader with an
importline in the JS file alone, and configure it with query strings.Is this possible?
So far I'm trying
I was hoping this would simply convert the PNG to a JPEG. Ideally I want to specify quality level and have it optimized too.
I'm getting