This is an automated email from the ASF dual-hosted git repository. dahn pushed a commit to tag 4.19.1.2 in repository https://gitbox.apache.org/repos/asf/cloudstack.git
commit b3f9824be1efffd12ca648748dc59e37f2a0e60f Author: Daniel Augusto Veronezi Salvador <gutoveron...@apache.org> AuthorDate: Tue Sep 17 16:08:23 2024 -0300 Fix Vue devServer after CSRF fix --- ui/vue.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ui/vue.config.js b/ui/vue.config.js index c74218b4bcf..9cae2ff66fb 100644 --- a/ui/vue.config.js +++ b/ui/vue.config.js @@ -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 ? {