mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
39 lines
530 B
YAML
39 lines
530 B
YAML
|
# Note: You must restart bin/webpack-dev-server for changes to take effect
|
||
|
|
||
|
default: &default
|
||
|
source_path: app/javascript
|
||
|
source_entry_path: packs
|
||
|
public_output_path: packs
|
||
|
|
||
|
extensions:
|
||
|
- .coffee
|
||
|
- .erb
|
||
|
- .js
|
||
|
- .jsx
|
||
|
- .ts
|
||
|
- .vue
|
||
|
- .sass
|
||
|
- .scss
|
||
|
- .css
|
||
|
- .png
|
||
|
- .svg
|
||
|
- .gif
|
||
|
- .jpeg
|
||
|
- .jpg
|
||
|
|
||
|
development:
|
||
|
<<: *default
|
||
|
|
||
|
dev_server:
|
||
|
host: 0.0.0.0
|
||
|
port: 8080
|
||
|
https: false
|
||
|
|
||
|
test:
|
||
|
<<: *default
|
||
|
|
||
|
public_output_path: packs-test
|
||
|
|
||
|
production:
|
||
|
<<: *default
|