From 65923fee9f4ebc680b54e13afc4dfa62d39b22ba Mon Sep 17 00:00:00 2001 From: wbuezas Date: Wed, 4 Dec 2024 11:31:08 -0300 Subject: [PATCH] Modify readme --- README.md | 3 +-- src/boot/axios.js | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 790b526b..c61f509a 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,7 @@ $ quasar dev Launch project backend. ``` -cd back -php -S 127.0.0.1:3002 -t . index.php +pnpm run back ``` Run server side method from command line. diff --git a/src/boot/axios.js b/src/boot/axios.js index bc540d23..6a2db124 100644 --- a/src/boot/axios.js +++ b/src/boot/axios.js @@ -39,7 +39,6 @@ const onResponseError = error => { export default boot(({ app }) => { const userStore = useUserStore(); const appStore = useAppStore(); - console.log('appStore', appStore); function addToken(config) { if (userStore.token) { config.headers.Authorization = userStore.token;