From 3585131812de1c0106bac30d874a50865b54d3b1 Mon Sep 17 00:00:00 2001 From: John Leider Date: Tue, 5 Nov 2019 09:39:00 -0600 Subject: [PATCH] fix(helpers): properly return options if variables are not used --- util/helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/helpers.js b/util/helpers.js index f75c486b..096812b2 100644 --- a/util/helpers.js +++ b/util/helpers.js @@ -41,7 +41,7 @@ function mergeRules (api, opt, ext) { addImports(api, 'variables', data, end) // If user isn't supplying variables, avoid prepending data - if (!data.length) return + if (!data.length) return opt // Inject Vuetify styles at the end of user supplied data.push(`@import '~vuetify/src/styles/styles.sass${end}`)