aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/webpacker.yml11
1 files changed, 9 insertions, 2 deletions
diff --git a/config/webpacker.yml b/config/webpacker.yml
index e62a7acd1..51afa9df5 100644
--- a/config/webpacker.yml
+++ b/config/webpacker.yml
@@ -10,7 +10,7 @@ default: &default
# ['app/assets', 'engine/foo/app/assets']
resolved_paths: []
- # Reload manifest.json on all requests so we reload latest compiled packs
+ # Reload manifest.json on all requests so we reload latest compiled packs
cache_manifest: false
extensions:
@@ -33,11 +33,18 @@ development:
<<: *default
compile: true
+ # Reference: https://webpack.js.org/configuration/dev-server/
dev_server:
+ https: false
host: localhost
port: 3035
+ public: localhost:3035
hmr: false
- https: false
+ # Inline should be set to true if using HMR
+ inline: true
+ overlay: true
+ disable_host_check: true
+ use_local_ip: false
test:
<<: *default