[SOLVED] Reload only current page

hi!!
i’m using live-server:

to run my app on chrome
but every time i make a change, the whole app reloads, and i have to go the page i was working on again.
Is there anyway that i can reload my current page only, not the the whole app?

thanks!!

Nervemind, i found the solution, by using pushState

var app = new Framework7({
  //....
  view: {
        pushState: true
    },
  //...
})
1 Like