forked from shakacode/react-webpack-rails-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpacker_lite.yml
27 lines (22 loc) · 887 Bytes
/
webpacker_lite.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Note: Base output directory of /public is assumed for static files
default: &default
manifest: manifest.json
# Used in your webpack configuration. Must be created in the
# webpack_public_output_dir folder
development:
<<: *default
# generated files for development, in /public/webpack/development
webpack_public_output_dir: webpack/development
# Default is localhost:3500
hot_reloading_host: localhost:3500
# Developer note: considering removing this option so it can ONLY be turned by using an ENV value.
# Default is false, ENV 'HOT_RELOAD' will always override
hot_reloading_enabled_by_default: false
test:
<<: *default
# generated files for tests, in /public/webpack/test
webpack_public_output_dir: webpack/test
production:
<<: *default
# generated files for tests, in /public/webpack/production
webpack_public_output_dir: webpack/production