firebase 새로고침 오류해결하기
❓ local
에서 사용할때는 새로고침을해도 페이지가 유지가 되었는데
실서버에서는 새로고침을하면 페이지가 /
로 이동하는 오류가 생겼다.
router.push()
router.reload()
window.location.href
window.location.reload
window.history.go(0)
뭔짓을 해도 안되었다.
// firebase.json
{
"hosting": {
"public": "out",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
❗ firebase.json파일의 rewrites
설정이 문제였다.
rewrites
를 지워주고 cleanUrls
를 추가해주었다.
// firebase.json
{
"hosting": {
"public": "out",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"cleanUrls" : true
}
}
Author And Source
이 문제에 관하여(firebase 새로고침 오류해결하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@stnqls3938/firebase-새로고침-오류해결하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)