diff --git a/nuxt/config/bonn.js b/nuxt/config/bonn.js index 161f560..eda8380 100644 --- a/nuxt/config/bonn.js +++ b/nuxt/config/bonn.js @@ -9,6 +9,7 @@ export default (options) => { const components = !!opts.components || (opts.components !== false) const composables = !!opts.composables || (opts.composables !== false) const icons = !!opts.icons || (opts.icons !== false) + const utils = !!opts.utils || (opts.utils !== false) // Include library components in the compilation const modules = [] @@ -26,6 +27,7 @@ export default (options) => { components, composables, icons, + utils, prefix: opts.prefix }]) }