IT/프로그래밍

ANGULAR build Options [ 빌드 캐시 삭제 ]

Collin 2020. 5. 14. 20:00
반응형

 

angular build option으로 배포 전에 브라우저에 있는 캐시 정보 삭제하는 방법

 

WEB 소스를 배포 반영하다 보면 브라우저 캐시 때문에 오류가 발생하는 경우가 있다.

이런 경우 사용자가 브라우저 캐시 삭제 방법을 알고 있다면 캐시 삭제 후 진행하면 되지만

모르는 경우 알려주거나 서버에서 작업을 해주어야 한다.

 

angular는 build options으로 해당 기능을 제공하고 있다. 

 

 

 

ng build <project> [options]

ng build <project> --outputHashing=all

 

ng build --outputHashing=all

 

 

공식 홈페이지 URL [ ANGULAR build ]
https://angular.io/cli/build

 

 


해외 사이트 참조

 

 

참고 URL

https://medium.com/@tomastrajan/6-best-practices-pro-tips-for-angular-cli-better-developer-experience-7b328bc9db81

 

6 Best Practices & Pro Tips when using Angular CLI

Learn how to organize your modules, use aliases, use sass, production build, testing with Headless Chrome and generate nice changelogs!

medium.com

 

배포 이후 브라우저 캐시로 인한 재현이 힘들기 때 문어서 간단히 확인해보았는데

아직까지는 잘 되는 것 같다.

반응형

'IT > 프로그래밍' 카테고리의 다른 글

File up & download HTML  (0) 2020.08.07
JAVA] A와 B 날짜 차이 계산하기  (0) 2020.07.09
2020-03-17 [ readable-stream ] 오류  (0) 2020.03.17
eclipse git reflog  (0) 2019.11.14
mysql datetime to java String 변환  (0) 2019.09.25