fix subpath config

This commit is contained in:
hay-kot 2021-08-08 11:17:03 -08:00
parent ff2b681980
commit fcee79a3e7
7 changed files with 310 additions and 9675 deletions

14
frontend/plugins/axios.js Normal file
View file

@ -0,0 +1,14 @@
export default ({ $axios, store }) => {
// $axios.onResponse((response) => {
// console.log(`[${response.status}] ${response.request.path}`);
// });
// $axios.onError((err) => {
// console.log(`[${err.response && err.response.status}] ${err.response && err.response.request.path}`);
// console.log(err.response && err.response.data);
// });
// $axios.onRequest((config) => {
// console.log("Making request to " + config.url);
// });
};