mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
10 lines
221 B
JavaScript
10 lines
221 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 }
|
|
]
|
|
}
|