๋ฐ์ํ ๋ด๊ฐ ๋ง๋ ERROR11 permission denied sudo chown -R ๋ด ๋งฅ๋ถ ๊ณ์ : ๊ฒฝ๋ก 2023. 2. 22. [github page] Failed to load resource: the server responded with a status of 404 () Swagger๋ก API ๋ฌธ์๋ฅผ ๋ง๋ค๊ณ ์๋๋ฐ github page๋ก ํธ์คํ ํ๋ ค๋๊น ์ ๋ฐ ๊ฐ๊ฐ์ ์๋ฌ๊ฐ ๊ณ์ ๋ฌ๋ค. ๋ต์ ์ต์์ ๊ฒฝ๋ก ํด๋์ .nojekyll ํ์ผ์ ๋ง๋ค์ด์ฃผ๊ณ commit์ ํ์ github page ์์ฒด์์ jekyll theme๋ฅผ ์ฌ์ฉํ๊ธฐ ๋๋ฌธ์ด๋ค. (swagger์์ ์ฌ์ฉํ๋ theme์ ์ถฉ๋ํ๋๋ด) 2022. 4. 11. [Vue] Vue packages version mismatch github repo๋ฅผ clone ํด์ ์คํ์ํค๋ ค๋๋ฐ ์๋์ ๊ฐ์ ERROR๊ฐ ๋ฐ์ํ์๋ค!!! ๐ ์ฆ, ๋์ vue version์ 2.6.14 clone ๋ฐ์ repo์ vue๋ 2.6.12 - vue@2.6.14 - vue-template-compiler@2.6.12 ๊ทธ๋์ package.json์์ vue version์ ํ๋์ฝ๋ฉ ํ๊ณ package-lock.json๊ณผ node_modules๋ฅผ ์ง์ด ํ ๋ค์ npm install์ ํด์ฃผ์๋ค. 2021. 11. 25. [Vue] Error: Avoided redundant navigation to current location. ํ์ฌ ํ์ด์ง์์ ๋์ผํ ํ์ด์ง ๊ฒฝ๋ก๋ก ์ด๋ํ๋ ค๊ณ ํ๋ฉด ์๊ธฐ๋ ERROR๋ค. ๐๐ป ERROR๊ฐ ๋ฐ์ํ ์ฝ๋ this.$router.push('/monitoring'); ๐๐ป ์์ ํ ์ฝ๋ ๋์ค ํ๋๋ก ๋ฐ๊ฟ์ฃผ๋ฉด ๋๋ค. -catch๋ก ์ค๋ฅ๋ฅผ ๋ฌด์ํ๊ธฐ this.$router.push('/monitoring').catch(()=>{}); -ํ์ฌ ์ฃผ์์ ์ด๋ํ ์ฃผ์๋ฅผ ๋น๊ตํด์ ์คํํ๊ธฐ if (this.$route.path !== '/monitoring') { this.$router.push('/monitoring') } 2021. 11. 24. [Golang] go module error go.mod ํ์ผ์ ERROR๊ฐ ๋ ๋๊ฐ ์๋ค. ๊ทธ๋ด๋ Terminal์ ์๋์ ๊ฐ์ด ์ ๋ ฅํ๋ฉด ๋๋ค. $ go mod init [module ๊ฒฝ๋ก] $ go mod tidy 2021. 11. 17. [React] e.preventDefault(); ๐ช ์์ ์ ์ฝ๋ writeComment = e => { this.setState({ comment: e.target.value, }); }; addComment = e => { โญ๏ธ e.preventDefault(); const { commentList, comment } = this.state; this.setState({ commentList: [ ...commentList, { id: commentList.length + 1, userName: 'zzz_yk', content: comment, }, ], comment: '', }); }; enterKey = e => { if (e.key === 'Enter') { this.addComment(); } }; ๊ฒ์ ์ด๋ ๊ฒ ํ๊ณ ๋๊ธ์ ์ฐ๊ณ Enter.. 2021. 11. 16. ์ด์ 1 2 ๋ค์ ๋ฐ์ํ