Skip to content
New issue

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

Config for transformAssetUrls in Nuxt.js outdated #3521

Closed
JosephTico opened this issue Jun 15, 2019 · 1 comment · Fixed by #3523
Closed

Config for transformAssetUrls in Nuxt.js outdated #3521

JosephTico opened this issue Jun 15, 2019 · 1 comment · Fixed by #3523

Comments

@JosephTico
Copy link

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:

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.

Versions

Libraries:

  • BootstrapVue: 2.0.0-rc.23
  • Bootstrap: 4.3.1
  • Vue: 2.6.10
  • Nuxt: 2.8.1
@tmorehouse
Copy link
Member

2.0.0-rc.24 has been released

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
2 participants