Skip to content

Commit

Permalink
fix: if user is not using a-la-carte, do not update transpileDependen…
Browse files Browse the repository at this point in the history
…cies

fixes #129
  • Loading branch information
johnleider committed Nov 3, 2019
1 parent 09e7bb6 commit 1afde14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generator/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ module.exports = (api, opts) => {
if (!opts.installFonts) fonts.addLinks(api, opts.iconFont)
vuetify.setHtmlLang(api, opts.locale)

// Update vue.config.js for transpileDependency
vuetify.updateOrCreateVueConfig(api)
// Update vue.config.js for transpileDependency if AlaCarte
if (opts.useAlaCarte) vuetify.updateOrCreateVueConfig(api)

api.exitLog('Discord community: https://community.vuetifyjs.com')
api.exitLog('Github: https://github.com/vuetifyjs/vuetify')
Expand Down

0 comments on commit 1afde14

Please sign in to comment.