Skip to content

Commit

Permalink
Enable live reload
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Hebing committed Nov 12, 2019
1 parent fc3a816 commit 7576116
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions {{cookiecutter.slug}}/frontend.angular/package.overwrite.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"build:{{code}}": "ng build --configuration=production-{{code}}",
{%- endfor %}
"i18n": "ng xi18n --output-path locale",
"serve": "ng serve --liveReload=false --proxy-config ../proxy.conf.json",
"serve": "ng serve --proxy-config ../proxy.conf.json",
"start": "yarn serve",
{% set localizations = cookiecutter.localizations.split(',') %}
{%- for loc in localizations %}
{%- set code, name = loc.split(':') %}
"serve:{{code}}": "ng serve --liveReload=false --proxy-config ../proxy.conf.json --configuration={{code}}",
"serve:{{code}}": "ng serve --proxy-config ../proxy.conf.json --configuration={{code}}",
{%- endfor %}
"test": "ng test --watch=true",
"test-once": "ng test --watch=false",
Expand Down

0 comments on commit 7576116

Please sign in to comment.