Explorar el Código

Docs: Hide unnecessary warnings. [skip ci]

Piotrek Koszuliński hace 7 años
padre
commit
de71987fe6
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4 1
      docs/framework/guides/quick-start.md

+ 4 - 1
docs/framework/guides/quick-start.md

@@ -88,7 +88,10 @@ module.exports = {
 	},
 
 	// Useful for debugging.
-	devtool: 'source-map'
+	devtool: 'source-map',
+
+	// By default webpack logs warnings if the bundle is bigger than 200kb.
+	performance: { hints: false }
 };
 ```