これは私が訪れたい道です:
export async function getServerSideProps() {
const url = 'http://127.0.0.1:3000/api/auth/profile/';
const resp = await axios.get(url, {withCredentials: true})
const json = await resp.json()
console.log(json)
return {
props: {}
}
};
これは next.config.js です:
module.exports = {
async rewrites() {
return [
{
source: '/api/auth/:path*',
destination: 'http://127.0.0.1:8000/api/auth/:path*'
},
]
},
}
しかし、それはこれを返しています:
Server Error
Error [ERR_FR_TOO_MANY_REDIRECTS]: Maximum number of redirects exceeded
私は何をすべきか?