Nuxt/examples/vue-class-component/nuxt.config.js

11 lines
216 B
JavaScript
Raw Normal View History

2017-04-14 14:47:21 +00:00
module.exports = {
build: {
babel: {
plugins: ['transform-decorators-legacy']
},
extend (config) {
config.resolve.alias['nuxt-class-component'] = '~plugins/nuxt-class-component'
}
}
}