무던히 하다보면 느는

[html/css] node.js 와 flask에서 css 적용하는 법 본문

카테고리 없음

[html/css] node.js 와 flask에서 css 적용하는 법

무던히 하다보면 느는 2023. 2. 12. 11:10

서버로 주로 node.js 를 사용한다. 파이썬 유저들은 간혹 flask를 사용할 때도 있다.

난 flask 사용하다가 node.js 를 사용중인데 css를 설정해주는 방법이 달라서 기록해두려고 한다.

 

1. node.js

public 폴더 > css 폴더 > style.css 파일

로 경로를 지정하고 html 파일 안에 <link rel="stylesheet" href="/css/style.css" /> 참조주소 넣어준다.

 

2. flask 

static 폴더 > css 폴더 > style.css 파일

로 경로를 지정하고 html 파일안에 <link rel="stylesheet" type="text/css" href="{{url_for('static',filename='css/style.css')}}">

넣어준다.

 

끝 ^^