일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- v-combobox
- javascript #컴파일 #인터프리터
- postman
- nextjs
- vuejs
- PersistentVolume
- vuetify3
- react
- github action #tistory
- mixedcontent
- localstorage
- javascript #localstorage #stringify #parse
- OpenLayers
- vue #vue-router
- PersistentVolumeClaim
- sesstionstorage
- 인터넷 #클라이언트 #서버 #포트 #ipadress #domainname
- vue3
- CKEditor4
- 맥 #나스 #SMA
- vuejs #pinia #vuetify3
- 라우터 #NAT #포트 #포트포워딩 #유동고정아이피 #DHCP
- vworld
- MPA
- browserstorage
- MongoDB
- Yarn
- kubernetes
- basepath
- JavaScript
- Today
- Total
목록전체 글 (39)
月亮
1. request 헤더를 blob로 받기 excelDownload: (url, param) => { return axios.get(`${API_URL}${url}`, { params: param, responseType: "blob", }); }, const downloadExcel = () => { data.value.loading = true; commonService.download({ data.value.param }).then( (d) => { if (d.status === 200) { // 파일 이름 추출 const contentDisposition = d.headers["content-disposition"]; const filename = contentDisposition.split("f..
mac lsof -i tcp:8080 출처 https://dundung.tistory.com/148
개발 서버에 nextjs 프로젝트를 올리던중 context-path 설정이 필요해서 알아보고 기록해둔다. 1. next confing 설정 수정 : basePath에 하고 싶은 path 설정 /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, basePath: '/blog', } module.exports = nextConfig 이렇게 설정하면 이미지 import 중 문제가 생긴다. 이미지는 아직 path 설정을 안붙였기 때문 2가지 방법이 존재한다. 2-1. src 경로에 path 붙여주기 2-2. src 경로 안에 Images 폴더 추가하고 안에 이미지 넣기 , 그리고 해당 이미지 import해서 사용..