Botão Atualizar página em R brilhante

Tentei implementar um botão de atualização de página seguindo o linkaqui. No entanto, quando tentei implantar noshinyapp.io, falhou e solicitou a instalação do pacoteV8 o que eu já tinha feito. O aplicativo estava funcionando bem na máquina. O código que usei é:

jsResetCode <- "shinyjs.reset = function() {history.go(0)}",

useShinyjs(), # Include shinyjs in the UI

extendShinyjs(text = jsResetCode), # Add the js code to the page   

p(actionButton("reset_button", "Reset Tool"))

Noserver.R:

observeEvent(input$reset_button, {js$reset()}) 

Existe alguma maneira de fazer isso semshinyjs?

questionAnswers(1)

yourAnswerToTheQuestion