mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
10 lines
222 B
JavaScript
10 lines
222 B
JavaScript
module.exports = {
|
|
build: {
|
|
vendor: ['axios', 'mini-toastr', 'vue-notifications']
|
|
},
|
|
plugins: [
|
|
// ssr: false to only include it on client-side
|
|
{ src: '~/plugins/vue-notifications.js', ssr: false }
|
|
]
|
|
}
|