Open martijnhiemstra opened 6 years ago
also seeing this issue
@martijnhiemstra I have figured it out. In nuxt.config.js, change
modules: [
'@nuxtjs/bootstrap-vue'',
// Or if you have custom bootstrap CSS...
['@nuxtjs/bootstrap-vue', { css: false }],
],
to
modules: [
// Or if you have custom bootstrap CSS...
['@nuxtjs/bootstrap-vue', { css: false }],
],
I solved it by installing bootstrap too
npm install bootstrap@4.0.0-beta.3
Then restart the server and reload the website
I have started a blank Nuxt.js project. I install the @nuxtjs/bootstrap-vue module and I add the module to my nuxt.config.js file. My module section looks like this:
When I run npm run dev I get an error
Looks like a bug in the @nuxtjs/bootstrap-vue module. How can I fix this?