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 3, 2024
1 parent 124d6b8 commit 8830d3a
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 @@ -141,7 +141,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 8830d3a

Please sign in to comment.