We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow transformAssetUrls to be used like this:
transformAssetUrls
transformAssetUrls: { 'optimize-img': { src: value => `require('!optimize-img-loader!${value}')` } }
<template> <optimize-img src="./foo.png" /> </template>
I can create a PR if you think it's useful.
The text was updated successfully, but these errors were encountered:
This would be a good improvement. PR much appreciated.
I feel it would be better to just transform the path and leave wrapping in require() on the compiler.
require()
transformAssetUrls: { 'optimize-img': { src: value => `'!optimize-img-loader!${value}'` // transform the path. } }
Sorry, something went wrong.
No branches or pull requests
Allow
transformAssetUrls
to be used like this:I can create a PR if you think it's useful.
The text was updated successfully, but these errors were encountered: