본문 바로가기
Programming/Google

[GAE] Static 파일 설정

by NAMP 2015. 12. 2.


js 파일 불러오기.


appengine-web.xml 내용 추가.


<static-files>

<include path="/favicon.ico" expiration="1d" />

<include path="/static/**" />

<include path="/**.css" />

<include path="/**.js" />

</static-files>



해당 파일은 


webapp/ 밑에 추가.


ex) webapp/js/common.js




댓글