error
-
cors 떴을 때 HTTP 요청 헤더에 no-cors add하기error 2022. 10. 6. 16:59
https://evertpot.com/no-cors/ Common no-cors misconceptions Between tasks I spend a fair time on Stack Overflow, which is (truth be told) a love/hate relationship. There’s a few recurring questions that I feel deserve a longer explanation. Last time, I wrote about how to use MySQL in Node.js, but today I wanted t evertpot.com https://ui.toast.com/weekly-pick/ko_20211110 CORS에서 이기는 방법 CORS에서 이기는 ..
-
도커 컨테이너에 빌드했을 때 failed to solve with frontend dockerfile.v0:에러error 2022. 9. 13. 22:57
https://stackoverflow.com/questions/64221861/an-error-failed-to-solve-with-frontend-dockerfile-v0 An error, "failed to solve with frontend dockerfile.v0" I was trying to build my Docker image for my Gatsby application. Whenever I run the command docker build . -t gatsbyapp, it gives me an error: failed to solve with frontend dockerfile.v0: failed to... stackoverflow.com raccoon@yoonO ~/Documen..
-
error TypeError: Cannot read properties of undefined (reading 'property명')error 2022. 2. 20. 00:11
JS의 top 10 에러 중 하나라서 나를 포함한 다른 사람들이 많은 고통(...)을 받고 있었다 error TypeError: Cannot read properties of undefined (reading 'description') at C:\Users\yunji\Desktop\discord-bot\my-bot\node_modules\discord.js\src\structures\MessagePayload.js:183:25 at Array.map () at MessagePayload.resolveData (C:\Users\yunji\Desktop\discord-bot\my-bot\node_modules\discord.js\src\structures\MessagePayload.js:181:45) at ..
-
[Trouble Shooting] SyntaxError: Unexpected token '??='error 2022. 2. 7. 02:02
yunji@DESKTOP-GIL7A23 MINGW64 ~/Desktop/discordBot $ node index.js C:\\Users\\yunji\\Desktop\\discordBot\\node_modules\\discord.js\\src\\rest\\APIRequest.js:34 agent ??= new https.Agent({ ...this.client.options.http.agent, keepAlive: true }); ^^^ SyntaxError: Unexpected token '??=' ?[90m at wrapSafe (internal/modules/cjs/loader.js:1001:16)?[39m ?[90m at Module._compile (internal/modules/cjs/load..
-
Error: listen EADDRINUSE: address already in use :::3000error 2021. 12. 7. 19:03
이코드를 복붙해서 ubuntu계정에서 실행시키면 해결됨. $ 118 Check the PID i.e. id of process running on port 3000 with below command : lsof -i tcp:3000 It would output something like following: COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME node 5805 xyz 12u IPv6 63135 0t0 TCP *:3000 (LISTEN) Now kill the process using : kill -9 5805 https://stackoverflow.com/questions/4075287/node-express-eaddrinuse-address-alre..
-
모바일에서 가로 스크롤 없애기error 2021. 11. 17. 00:34
https://www.thewordcracker.com/miscellaneous/%EB%AA%A8%EB%B0%94%EC%9D%BC-%EA%B8%B0%EA%B8%B0%EC%97%90%EC%84%9C-%EC%88%98%ED%8F%89-%EC%8A%A4%ED%81%AC%EB%A1%A4-%EC%97%86%EC%95%A0%EA%B8%B0/ 모바일 기기에서 수평 스크롤 없애기 - 워드프레스 정보꾸러미 모바일 웹에서 수평 스크롤(가로 스크롤)이 있을 경우 위의 그림과 같이 화면을 터치하여 왼쪽으로 이동시키면 사이트가 좌우로 움직이게 되어 매우 불편하게 됩니다. 모바일 기기에서 수평 www.thewordcracker.com 당시 이 코드만 있었는데 이 코드를 추가해 주고 나니 사라짐.