darkmode.js의 init 함수 다크모드를 로드하는 건 렌더링 이전에 실행되어야한다. 때문에 body태그 최상단에 rendering block 요소로 defer나 async 속성을 지정하지 않고 넣어주었다. hexo\themes\icarus\layout\layout.jsx
$ git pull origin sunghyeon From https://github.com/pshdev1030/NCRBQDTJY * branch sunghyeon -> FETCH_HEAD error: Your local changes to the following files would be overwritten by merge: Programmers/Sunghyeon/다리를 지나는 트럭/README.md Programmers/Sunghyeon/다리를 지나는 트럭/다리를 지나는 트럭.py Please commit your changes or stash them before you merge. Aborting
발생 이유
pull 받아오기 전에 수정해서 발생한 에러이다
내가 수정한 변경사항을 commit하거나 내가 수정한 변경사항을 merge하기 전에 stash에 임시 저장해두라는 말이다.
if (!MONGODB_URI) { thrownewError( "Please define the MONGODB_URI environment variable inside .env.local" ); }
/** * Global is used here to maintain a cached connection across hot reloads * in development. This prevents connections growing exponentially * during API Route usage. */ let cached = global.mongoose;