-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Allow href without .html extension for links between app's pages #2328
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
as discussed on discord
if you want
|
Thanks. I realised after looking into this that I had a setting called |
Is your feature request related to a problem? Please describe.
I want to have several pages in my app with links between them.
Suppose my distDir contains two files:
index.html
andabout.html
.My index page has a link to the About page:
<a href="about"> About </a>
On the web this link opens the
about.html
file.But in Tauri this link doesn't work unless I put
href="about.html"
there.Describe the solution you'd like
The link should work even if I don't add the
.html
part.Describe alternatives you've considered
_
Additional context
_
The text was updated successfully, but these errors were encountered: