Skip to content

Commit

Permalink
fix: fix apollo headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal Klesse committed Jun 13, 2024
1 parent de8429b commit 561aba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/plugins/apollo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default defineNuxtPlugin({

if (process.client) {
console.log('process.client', cookies);
cookies = (cookies.length ? cookies + '; ' : '') + document.cookie;
cookies = document.cookie;
}

console.log('cookies', cookies);
Expand Down

0 comments on commit 561aba0

Please sign in to comment.