Skip to content

Commit e22dbb1

Browse files
committed
feat(build): 重新修复构建导致的页面样式问题
1 parent fb603ba commit e22dbb1

File tree

12 files changed

+25
-107
lines changed

12 files changed

+25
-107
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/node_modules
2+
/dist

dist/assets/index.8ce7c652.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

dist/assets/index.f5a643ec.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/assets/vendor.69f34422.js

Lines changed: 0 additions & 36 deletions
This file was deleted.

dist/favicon.ico

-4.19 KB
Binary file not shown.

dist/index.html

Lines changed: 0 additions & 17 deletions
This file was deleted.

index.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="UTF-8" />
54
<link rel="icon" href="/favicon.ico" />
65
<link rel="stylesheet" href="./src/index.css">
76
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>Vite App</title>
7+
<title></title>
98
</head>
109
<body>
1110
<div id="app"></div>

plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"features": [
55
{
66
"code": "git-commit",
7-
"explain": "帮助开发快速完成git commit 内容创作",
7+
"explain": "帮助开发快速完成git commit message",
88
"cmds": [
9-
"git commit"
9+
"gc"
1010
]
1111
}
1212
]

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ const content = computed(() => {
129129
if (scope.value) {
130130
commit += "(" + scope.value + ")";
131131
}
132-
commit += ":" + subject.value;
132+
commit += ": " + subject.value;
133133
134134
if (body.value) {
135135
commit += "\r\n\r\n" + body.value + "\r\n\r\n";

src/components/HelloWorld.vue

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)