일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 코틀린
- vanillaJS
- NextJS
- useState
- websocket
- JavaScript
- 컴퓨터 네트워크
- 프로그래머스
- 백준
- 자바 공부
- 자바
- react
- 리액트
- React JS
- react firebase
- Java
- 프로그래머스 완전탐색
- design pattern
- 자바스크립트
- 디자인 패턴
- 데이터모델링과마이닝
- 코딩테스트 고득점 Kit
- codesandbox
- 리액트 훅
- 프로그래머스 자바
- react hook
- 프로그래밍 언어론
- useEffect
- 장고
- 코딩테스트 고득점 Kit 완전탐색
Archives
- Today
- Total
목록next.config.js rewrites path parameter (1)
기록하는 개발자
[NextJs] next.config.js 의 redirects와 rewrites
nextJs에서 자동으로 생성되는 파일 중 next.config.js 가 있다. 이 파일에서는 redirects와 rewrites 를 작성할 수 있다. redirects React에서 Router 작성 시 사용했던 Navigate 태그와 유사하다고 생각된다. Source URL을 원하는 Destination URL로 간단하게 Redirect 할 수 있다. const nextConfig = { reactStrictMode: true, async redirects() { return [ { // source로 이동하면 destination으로 가도록 source: "/about/*", destination: "/", permanent: false, }, { // token이 false일 때 "/"로 이동하면..
Web/NextJs
2023. 5. 9. 15:24