Skip to content

Commit

Permalink
fix(vue): allow transformAssetUrls to be overwritten
Browse files Browse the repository at this point in the history
  • Loading branch information
innocenzi committed Feb 28, 2022
1 parent c710654 commit a5d9f4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/plugin-vue/src/template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export function resolveTemplateCompilerOptions(
tags: transformAssetUrls as any
}
} else {
transformAssetUrls = { ...transformAssetUrls, ...assetUrlOptions }
transformAssetUrls = { ...assetUrlOptions, ...transformAssetUrls }
}
} else {
transformAssetUrls = assetUrlOptions
Expand Down

0 comments on commit a5d9f4a

Please sign in to comment.