Removed console.log and reduced timeout

This commit is contained in:
Dominic Villemure
2024-03-11 22:10:36 -04:00
parent bfef2b2d8c
commit ea716ec637
3 changed files with 3 additions and 8 deletions

View File

@@ -8,7 +8,7 @@ export default {
install: (app) => {
const axiosInstance = axios.create({
baseURL: 'https://localhost:5001/',
timeout: 5000,
timeout: 2000,
});
axiosInstance.interceptors.request.use((config) => {
@@ -22,7 +22,6 @@ export default {
});
app.provide(clientKey, axiosInstance);
console.log("client provided");
}
};