We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04ce48b commit 237e480Copy full SHA for 237e480
1 file changed
src/runtime/providers/umbraco.ts
@@ -29,9 +29,10 @@ interface UmbracoImageOptions {
29
30
export default defineProvider<UmbracoImageOptions>({
31
getImage: (src, {
32
- modifiers,
+ modifiers: _modifiers,
33
baseURL = '',
34
}) => {
35
+ const modifiers = { ..._modifiers }
36
// Map standard Nuxt Image fit values to ImageSharp resize modes
37
if (modifiers.fit === 'contain') {
38
modifiers.fit = 'max'
0 commit comments