Languages
[Edit]
PL

Angular 7 - wyłącz automatyczne przeładowywanie przeglądarki

3 points
Created by:
Sylwia
3590

Problem:

Jak wyłączyć automatyczne przeładowywanie w Angular 7?

Chcę zatrzymać automatyczne przeładowywanie w aplikacji Angular 7. Kiedy wprowadzam nawet małą zmianę w projekcie, cała strona wczytuje się ponownie.

Czy jest sposób, aby to wyłączyć?

Rozwiązanie:

1. Znajdź plik package.json

2. Zmień 1 wiersz:

PRZED:

"start": "ng serve",

PO:

"start": "ng serve --live-reload false",

3. Zrestartuj serwer

4. To działa

Plik package.json wygląda następująco:

PRZED:

{
  "name": "ng-gmaps",
  "version": "0.0.0",
  "scripts": {
    "ng": "ng",
    "start": "ng serve", <--------- TA LINIA PRZED
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
  "dependencies": {
  ....
  ....
  }
  ....
  ....
}

PO:

{  
  "name": "ng-gmaps",
  "version": "0.0.0",
  "scripts": {
    "ng": "ng",
    "start": "ng serve --live-reload false", <--------- TA LINIA PO
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
  "dependencies": {
  ....
  ....
  }
  ....
  ....
}

Kontekst

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Angular 7

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join