From ae00499ec5e90893eab750096e64c0562a0df946 Mon Sep 17 00:00:00 2001 From: Nicolas Pennec Date: Thu, 25 Jan 2018 09:51:06 +0100 Subject: [PATCH] fix: avoid warning of too big vendor --- examples/vue-chartjs/nuxt.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/vue-chartjs/nuxt.config.js b/examples/vue-chartjs/nuxt.config.js index e6b67f1882..943b5aebf7 100644 --- a/examples/vue-chartjs/nuxt.config.js +++ b/examples/vue-chartjs/nuxt.config.js @@ -7,7 +7,8 @@ module.exports = { ] }, build: { - vendor: ['axios', 'moment', 'chart.js', 'vue-chartjs'] + vendor: ['axios', 'moment', 'chart.js', 'vue-chartjs'], + maxChunkSize: 300000 }, env: { githubToken: '42cdf9fd55abf41d24f34c0f8a4d9ada5f9e9b93'