In my webpack-simple Vue.js project, I am utilizing Bootstrap 4 and Buefy. However, upon importing Buefy as per the documentation, I noticed that my This is how my main.js file is structured: The expected result when removing the import of Buefy can be seen here: https://i.sstatic.net/sBBHc.png However, introducing the import of Buefy to my main.js results in this issue: https://i.sstatic.net/ZNulB.pngimport Vue from 'vue';
import "bootstrap/dist/css/bootstrap.min.css";
import 'buefy/dist/buefy.css';
import Buefy from 'buefy';
Vue.use(Buefy);