[Vuejs]-Brunch and VueJs with Promise polyfill

2👍

Temporary fix: include vue to babel-brunch extensions:

babel: {
    pattern: /\.(js|vue)$/
}

Also, please make sure babel-brunch is after vue-brunch in package.json.

In future, this won’t be necessary because of compiler chaining we are shipping.

Leave a comment