반원 블로그

플라스크(Flask) 정적 파일 위치 변경 static_url_path, static_folder 본문

2018~/Flask 자료 정리

플라스크(Flask) 정적 파일 위치 변경 static_url_path, static_folder

반원_SemiCircle 2019. 9. 26. 18:39

참고 : https://stackoverflow.com/questions/20646822/how-to-serve-static-files-in-flask

 

How to serve static files in Flask

So this is embarrassing. I've got an application that I threw together in Flask and for now it is just serving up a single static HTML page with some links to CSS and JS. And I can't find where in ...

stackoverflow.com

외부에 템플릿을 구매하여 사용할 경우, static위치가 어떤 백엔드를 쓸거냐에 따라 바뀌는 경우가 있는데,

위 해당 링크에서는 app생성시 static_url_path를 변경하는 방법으로 기재했으나,

매개변수를 보니 static_folder도 있어서, Flask기본구조로 보면

웹 실행하는 main.py와 static폴더가 형제관계임으로

app = Flask(__name__,static_folder='./static/') #파일 명과 같은 이름이 들어가도록

로 작성했더니 해결해되었다.

Comments