You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Hot Module Replacement updates modules while the application is running without a full reload
27
+
hmr: false
28
+
# If HMR is on, CSS will by inlined by delivering it as part of the JS payload via style-loader. Be sure to add Mini Css Extract Plugin to your webpack config if hmr is false.
29
+
inline_css: true
30
+
client:
31
+
overlay: true
32
+
# Should we show a full-screen overlay in the browser when there are compiler errors or warnings?
33
+
compress: true
34
+
# Should we use gzip compression?
35
+
allowed_hosts: "all"
36
+
# Specifies allowedHosts for webpack-dev-server (useful for use with ngrok). Accepts a string value or an array of strings
37
+
pretty: true
38
+
# Shows progress and colorizes output of webpack compilation
39
+
headers:
40
+
'Access-Control-Allow-Origin': '*'
41
+
static:
42
+
watch:
43
+
ignored: '**/node_modules/**'
44
+
45
+
test:
46
+
<<: *default
47
+
compile: true
48
+
49
+
# Compile test packs to a separate directory
50
+
public_output_path: packs-test
51
+
52
+
production:
53
+
<<: *default
54
+
55
+
# Production depends on precompilation of packs prior to booting for performance.
0 commit comments