Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Erro na bootstrap - SOLUÇÃO

O erro que ocorre é o seguinte:

Failed to compile.

./node_modules/bootstrap/dist/css/bootstrap.css Module build failed: Unknown word (5:1)

3 | // load the styles 4 | var content = require("!!../../../css-loader/index.js!./bootstrap.css");

5 | if(typeof content === 'string') content = [[module.id, content, '']]; | ^ 6 | // add the styles to the DOM 7 | var update = require("!../../../style-loader/addStyles.js")(content, {}); 8 | if(content.locals) module.exports = content.locals;

@ ./src/main.js 10:0-42 @ multi (webpack)-dev-server/client?http://localhost:8080 webpack/hot/dev-server ./src/main.js

1 resposta
solução!

Solução:

Instalar o bootstrap 4.6.0 npm install bootstrap@4.6.0 --save

No arquivo webpack.config.js remova o seguinte trecho de código:

      {
        test: /\.css$/,
        use: [
          'vue-style-loader',
          'css-loader'
        ],
      },

Funcionará normalmente.