nextjs, firebase hosting - refresh시 404에러 해결
배포시에 자꾸 새로고침하면 root페이지로 이동하는 에러... firebase 설정시 rewrites를 추가해주면 root페이지로 이동하고 그렇지 않으면 404 에러가 난다. SPA관련해서 발생하는 에러라고 하는데 나는 해결방법만 알면 된다. firebase 설정에서 해당 내용을 추가해주었다. firebase.json "hosting": { "public": "out", "ignore": ["firebase.json", "**/.*", "**/node_modules/**"], "cleanUrls": true, "appAssociation": "AUTO", "rewrites": [ { "source": "/**", "destination": "/index.html", "dynamicLinks": true ..
CODING/etc.
2022. 10. 24. 15:54