반응형
Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- 객체 반복문
- javascript cookie 얻기
- input range
- 접근자 함수
- for in for of 차이점
- for in 문 예시
- javascript cookie 설정
- vue scss
- setter 함수 동기적 실행
- 로컬스토리지 객체 저장
- forEach map 차이
- Object for in
- vscode 재설치
- input type="range"
- pip 명령 에러
- for of 문 예시
- 로지텍 버티컬 마우스 사용 후기
- input range 컬러변경
- react input autofocus
- next.config.mjs
- vue sass 사용하기
- javascript cookie 삭제
- 접근자 프로퍼티
- 검색창 autofocus
- 로지텍 MX Vertical 마우스
- vue scss 전역 설정
- array method 요약
- vscode 초기화
- 로컬스토리지 쓰기 읽기 삭제
- react 검색 기능 구현
Archives
- Today
- Total
목록Web Development/NextJS (1)
짬짬이기록하기
next.config.mjs redirects rewrites 예시
/** @type {import('next').NextConfig} */ const API_KEY = process.env.API_KEY; const nextConfig = { reactStrictMode: true, async redirects() { return [ { source: "/contact/:path*", destination: "/form/:path*", permanent: false } ] }, async rewrites() { return [ { source: "/api/movies", destination: `https://api.themoviedb.org/3/movie/popular?api_key=${API_KEY}` } ] } }; export default nextConfig;..
Web Development/NextJS
2024. 3. 12. 14:50