Skip to content

Commit

Permalink
fix: add base to virtual html (#16442)
Browse files Browse the repository at this point in the history
  • Loading branch information
XiSenao committed Apr 18, 2024
1 parent 8e54bbd commit 721f94d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/vite/src/node/server/middlewares/indexHtml.ts
Expand Up @@ -191,7 +191,7 @@ const devHtmlHook: IndexHtmlTransformHook = async (
const trailingSlash = htmlPath.endsWith('/')
if (!trailingSlash && getFsUtils(config).existsSync(filename)) {
proxyModulePath = htmlPath
proxyModuleUrl = joinUrlSegments(base, htmlPath)
proxyModuleUrl = proxyModulePath
} else {
// There are users of vite.transformIndexHtml calling it with url '/'
// for SSR integrations #7993, filename is root for this case
Expand All @@ -202,6 +202,7 @@ const devHtmlHook: IndexHtmlTransformHook = async (
proxyModulePath = `\0${validPath}`
proxyModuleUrl = wrapId(proxyModulePath)
}
proxyModuleUrl = joinUrlSegments(base, proxyModuleUrl)

const s = new MagicString(html)
let inlineModuleIndex = -1
Expand Down

0 comments on commit 721f94d

Please sign in to comment.