mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-23 14:15:13 +00:00
9 lines
194 B
JavaScript
9 lines
194 B
JavaScript
const { join } = require('path')
|
|
|
|
module.exports = {
|
|
build: {
|
|
vendor: ['axios', 'mini-toastr', 'vue-notifications']
|
|
},
|
|
plugins: [ join(__dirname, './plugins/vue-notifications.js') ]
|
|
}
|