Skip to content

Commit e3c1be2

Browse files
author
Pooya Parsa
committedNov 16, 2017
fix(icon): await on build
1 parent daaf80d commit e3c1be2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/icon/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const isUrl = url => url.indexOf('http') === 0 || url.indexOf('//') === 0
99
module.exports = function nuxtIcon (options) {
1010
this.nuxt.plugin('build', builder => {
1111
debug('Adding icons')
12-
generateIcons.call(this, options)
12+
return generateIcons.call(this, options)
1313
})
1414
}
1515

0 commit comments

Comments
 (0)
Please sign in to comment.