Buttons and functions are not working after deployment on Ubuntu server
-
Hello there,
I’m new to quasar. On my local host, everything works just fine when i check but when I deploy my website functions and buttons are not working while the designs and every other thing seems perfect. Initially, I built this website with vuejs but then to get benefit of SSR, I opted for quasar. I have also deployed my vuejs website but everything works fine there. Now, my question is,
-
Is there anything else or alternative in Quasar for buttons, functions, v-ifs and that’s why they are not working?
-
Is there a different nginx configuaration ? This is my nginx configuration,
server {
listen 80;
listen 443 ssl;server_name mywebsite.com www.mywebsite.com;
location / {
proxy_pass http://127.0.0.1:3000/;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection ‘upgrade’;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
} -
Or Anything that you want to suggest?
-
-
Hey guys,
I searched online but there is very less information about quasar. Can you help me by sharing a tutorial or something like that? To make you understand the issue deeply, here original vue website: https://binarytotext.net/, and here is quasar build: http://138.68.61.240/
-
Found the reason, this is happening because I have used v-show. v-show will always be rendered and remain in the DOM. v-show only toggles the display CSS property of the element For now i have avoided using v-show.
-
This is a great idea