fix: handle .htm as same as .html (fix #10997) #11001
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Fixes #10997.
This will add support parsing .htm file as same as .html.
When there are both index.html and index.html, only index.html is loaded.
Additional context
I changed the .html file extension conditions in various files, so I might have changed some extreme conditions. Can you confirm that these changes are correct?
Also, according to #10997, it has unexported
htmlLangRE
and foundisHTMLRequest(request: string): boolean
to test with the regex, butisHTMLRequest
is only used in/packages/vite/src/node/plugins/define.ts:110-118
and has the normalized name like other functions. Should we use it to check the extension of HTML files?What is the purpose of this pull request?
Before submitting the PR, please make sure you do the following
fixes #123
).