Skip to content

Commit 239da77

Browse files
tmorehousejacobmllr95
authored andcommitted
fix(nuxt module): ensure that css and transpile are arrays (fixes: #3141) (#3142)
Ensures that `this.options.css` and `this.options.build.transpile` are existing arrays Fixes #3141
1 parent 263f206 commit 239da77

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

nuxt/index.js

+4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ module.exports = function nuxtBootstrapVue(moduleOptions = {}) {
2323
...moduleOptions
2424
}
2525

26+
// Ensure we have arrays
27+
this.options.css = this.options.css || []
28+
this.options.build.transpile = this.options.build.transpile || []
29+
2630
const bootstrapVueCSS = pickFirst(
2731
options.bootstrapVueCSS,
2832
options.bootstrapVueCss,

0 commit comments

Comments
 (0)