Got it to work!
in my vite.config.js i added an extra / to my localhost target,
my vite.config.js
/
Not working, Keeps full reloading my page: target: 'http://localhost:5002',
target: 'http://localhost:5002',
Working, Only reloads the DOM: target: 'http://localhost:5002/',
target: 'http://localhost:5002/',