Skip to content

Commit

Permalink
fix: fix html bak file name
Browse files Browse the repository at this point in the history
  • Loading branch information
subframe7536 committed Jan 3, 2025
1 parent a953760 commit cf6c5b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const htmlPath = (() => {
return path.join(sandboxPath, `${WORKBENCH_NAMES[0]}.html`)
})()

export const htmlBakPath = htmlPath.replace('.html', `${bakExt}.html`)
export const htmlBakPath = htmlPath.replace('.html', `.${bakExt}.html`)

export const externalCssName = 'external.css'
export const externalJsName = 'external.js'
Expand Down

0 comments on commit cf6c5b4

Please sign in to comment.