Vue SSR serverPrefetch server 리디렉션$ssrContext.res.redirect 서버 콘솔에서 오류 없이 VUE SSR의 구성 요소에서 리디렉션을 수행할 수 있는가?[ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client? 코드는 다음과 같다. serverPrefetch() { // need the data from this.fetchPage service to decide on the redirect return this.fetchPage().then(function (response) { // do some checks here // THIS IS THE NODE EXPRESS REDIRECT ..