You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this example, a base element is used to set the document base URL:
<!DOCTYPE html>
<html lang="en">
<head>
<title>This is an example for the <base> element</title>
<base href="https://www.example.com/news/index.html">
</head>
<body>
<p>Visit the <a href="archives.html">archives</a>.</p>
</body>
</html>
If the archives's href start with /, the link would be a link to "https://www.example.com/archives" (whithout /news/) . And vue-router now doesn't support set base with: https://www.example.com/news/index.html.
This example is from the html spec about
base
tag https://html.spec.whatwg.org/multipage/semantics.html#the-base-element:If the
archives's
href start with/
, the link would be a link to "https://www.example.com/archives" (whithout/news/
) . Andvue-router
now doesn't support set base with:https://www.example.com/news/index.html
.some other maybe related discussions: remix-run/history#94
The text was updated successfully, but these errors were encountered: