Nuxt/examples/plugins-vendor/nuxt.config.js

7 lines
177 B
JavaScript
Raw Normal View History

2016-11-08 01:57:55 +00:00
const { join } = require('path')
module.exports = {
vendor: ['axios', 'mini-toastr', 'vue-notifications'],
plugins: [ join(__dirname, './plugins/vue-notifications.js') ]
2016-11-08 01:57:55 +00:00
}