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
Using the latest version of the libraries, it seems that the transformAssetUrls config for Nuxt.js is either outdated or has some wrong parameters.
The docs page for this has the following code, which I assume is the same automatically added from v2.0.0-rc.22 onwards:
module.exports = { build: { extend(config, ctx) { const vueLoader = config.module.rules.find(rule => rule.loader === 'vue-loader') vueLoader.options.transformAssetUrls = { video: ['src', 'poster'], source: 'src', img: 'src', image: 'xlink:href', 'b-img': 'src', 'b-img-lazy': ['src', 'blank-src'], 'b-card': 'img-src', 'b-card-img': 'img-src', 'b-card-img-lazy': ['src', 'blank-src'], 'b-carousel-slide': 'img-src', 'b-embed': 'src' } } } }
However, b-card-img doesn't use img-src, it uses plain src. There may be other cases of wrong parameters, but this is the one I just found.
img-src
src
Libraries:
The text was updated successfully, but these errors were encountered:
fix(nuxt): correct tranasformAssetUrls for b-card-img (closes #3521)
2e48f02
closes #3521
fix(nuxt): correct transformAssetUrls value for b-card-img (closes #…
b-card-img
db8c6fd
…3521) (#3523)
2.0.0-rc.24 has been released
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
Using the latest version of the libraries, it seems that the transformAssetUrls config for Nuxt.js is either outdated or has some wrong parameters.
The docs page for this has the following code, which I assume is the same automatically added from v2.0.0-rc.22 onwards:
However, b-card-img doesn't use
img-src
, it uses plainsrc
. There may be other cases of wrong parameters, but this is the one I just found.Versions
Libraries:
The text was updated successfully, but these errors were encountered: