Skip to content

Commit

Permalink
Fix Vue devServer after CSRF fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GutoVeronezi authored and DaanHoogland committed Oct 11, 2024
1 parent 5ab0a52 commit 0602f46
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ui/vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,11 @@ const vueConfig = {
secure: false,
ws: false,
changeOrigin: true,
proxyTimeout: 10 * 60 * 1000 // 10 minutes
proxyTimeout: 10 * 60 * 1000, // 10 minutes
cookieDomainRewrite: '*',
cookiePathRewrite: {
'/client': '/'
}
}
},
https: process.env.HTTPS_KEY ? {
Expand Down

0 comments on commit 0602f46

Please sign in to comment.