Skip to content

Commit

Permalink
build script bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
BHznJNs committed Feb 7, 2024
1 parent 34b7a86 commit 037b70f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/indexTemplate.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const HTMLHeader = `\
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="color-scheme" content="light dark">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>${config.title ? "MarkdownBlog" : config.title}</title>
<title>${config.title ? config.title : "MarkdownBlog"}</title>
<link rel="shortcut icon" href="./dist/imgs/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="./dist/style.min.css">
<script src="./dist/index.min.js" type="module" defer></script>
Expand Down

0 comments on commit 037b70f

Please sign in to comment.