Commit 4cf9ba46 by CalciumIon

feat: add Cache-Control header to API requests

parent bf7e6434
...@@ -6,7 +6,8 @@ export let API = axios.create({ ...@@ -6,7 +6,8 @@ export let API = axios.create({
? import.meta.env.VITE_REACT_APP_SERVER_URL ? import.meta.env.VITE_REACT_APP_SERVER_URL
: '', : '',
headers: { headers: {
'New-API-User': getUserIdFromLocalStorage() 'New-API-User': getUserIdFromLocalStorage(),
'Cache-Control': 'no-store'
} }
}); });
...@@ -16,7 +17,8 @@ export function updateAPI() { ...@@ -16,7 +17,8 @@ export function updateAPI() {
? import.meta.env.VITE_REACT_APP_SERVER_URL ? import.meta.env.VITE_REACT_APP_SERVER_URL
: '', : '',
headers: { headers: {
'New-API-User': getUserIdFromLocalStorage() 'New-API-User': getUserIdFromLocalStorage(),
'Cache-Control': 'no-store'
} }
}); });
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment