diff --git a/src/MyPrayerJournal/App/package.json b/src/MyPrayerJournal/App/package.json index ea9c7d1..0fa2045 100644 --- a/src/MyPrayerJournal/App/package.json +++ b/src/MyPrayerJournal/App/package.json @@ -10,7 +10,7 @@ "lint": "vue-cli-service lint", "apistart": "cd ../Server && dotnet run", "publish": "vue-cli-service build --modern && cd ../Server && dotnet publish -c Release -r linux-x64 -p:PublishSingleFile=true --self-contained false", - "vue": "vue-cli-service build --development && cd ../Server && dotnet run" + "vue": "vue-cli-service build --mode development && cd ../Server && dotnet run" }, "dependencies": { "@vueuse/core": "^6.4.1", diff --git a/src/MyPrayerJournal/App/src/api/index.ts b/src/MyPrayerJournal/App/src/api/index.ts index f8205c7..f3357f5 100644 --- a/src/MyPrayerJournal/App/src/api/index.ts +++ b/src/MyPrayerJournal/App/src/api/index.ts @@ -70,7 +70,10 @@ export default { * Set the bearer token for all future requests * @param token The token to use to identify the user to the server */ - setBearer: (token: string) => { bearer = `Bearer ${token}` }, + setBearer: (token: string) => { + console.info(`Setting bearer token to ${token}`) + bearer = `Bearer ${token}` + }, /** * Remove the bearer token diff --git a/src/MyPrayerJournal/App/src/components/NavigationBar.vue b/src/MyPrayerJournal/App/src/components/NavigationBar.vue index cf9aa3e..adf7e3f 100644 --- a/src/MyPrayerJournal/App/src/components/NavigationBar.vue +++ b/src/MyPrayerJournal/App/src/components/NavigationBar.vue @@ -1,7 +1,10 @@