External Links bring to local host 127.0.0.1

Hello,
I am trying to add a link to my main shiny page but it is always opened with 127 . 0 . 0 . 1 before:
for example, when I add a link such as something dot com it opens 127 . 0 . 0 . 1 /LINK TO USE

here my code:

ui <- shiny::fluidPage(
    shiny::navbarPage(
        "methyl.O",
        shiny::tabPanel("Homepage",
            icon = shiny::icon("home"), 
            shiny::mainPanel(
                shiny::tags$footer(
                    shiny::HTML(
                        "<!-- Footer -->
                        <footer class='page-footer font-large indigo'>
                        <div class='footer-copyright text-center py-3'>
                        short description Link to methyl.O repo: <a href='LINK TO USE'> LINK TO USE</a> </a>
                        </div>
                        </footer>
                        <!-- Footer -->"
                    )
                )
            )
        )
    )
)

server <- function(input=input, server=server,  output = output) {}

shiny::shinyApp(server=server, ui=ui)

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.