Bootstrap-vue doesn't load CSS

前端 未结 5 2223
感动是毒
感动是毒 2021-02-13 11:38

I am writing a Vue.js app with Bootstrap 4 and I can\'t loaded though I followed the documentation.

Added to main.js

Vue.use(BootstrapVue);

5条回答
  •  醉酒成梦
    2021-02-13 12:24

    In my case I was working with vue-cli 4.3.1, and I was using this configuration by error.

    If you remove this configuration then all work nice!

    https://cli.vuejs.org/guide/css.html#css-modules

    If you want to drop the .module in the filenames, set css.requireModuleExtension to false in vue.config.js:

    // vue.config.js
    module.exports = {
      css: {
        requireModuleExtension: false
      }
    }
    

提交回复
热议问题