From f6a02a1ac6844030224bd516852784e1def5d48a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Mon, 27 Mar 2017 18:06:57 +0200 Subject: [PATCH] Disable performance hints for SSR --- lib/webpack/server.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/webpack/server.config.js b/lib/webpack/server.config.js index d1f6eb35ab..0a92a9c82e 100644 --- a/lib/webpack/server.config.js +++ b/lib/webpack/server.config.js @@ -30,6 +30,9 @@ export default function () { filename: 'server-bundle.js', libraryTarget: 'commonjs2' }), + performance: { + hints: false + }, plugins: (config.plugins || []).concat([ new VueSSRPlugin({ filename: 'server-bundle.json'