Bootstrap-vue doesn't load CSS

前端 未结 5 2210
感动是毒
感动是毒 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:28

    I came across this same issue, but luckily I found the cause: The loader is not loaded :)

    1. Make sure you have both vue-style-loader and css-loader in package.json
    2. Then in your webpack config, your module.rules should have this object:
      {
        test: /\.css/,
        use: ['vue-style-loader', 'css-loader'] // BOTH are needed!
      }
    3. And in your App.vue, under the
提交回复
热议问题