create-web-kit 25.829.1036 → 25.829.1040
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generators/nextjs-csr.js +13 -26
- package/package.json +1 -1
|
@@ -73,47 +73,34 @@ function copyConfigHuskyPackage(root) {
|
|
|
73
73
|
// 仅当不存在时写入,避免覆盖用户自定义内容
|
|
74
74
|
if (!pkg.seo) {
|
|
75
75
|
pkg.seo = {
|
|
76
|
-
title: "
|
|
77
|
-
description: "
|
|
78
|
-
keywords: [
|
|
79
|
-
"OneFile",
|
|
80
|
-
"文件上传",
|
|
81
|
-
"大文件分片上传",
|
|
82
|
-
"对象存储",
|
|
83
|
-
"OSS",
|
|
84
|
-
"COS",
|
|
85
|
-
"R2",
|
|
86
|
-
"S3",
|
|
87
|
-
"Oracle Object Storage",
|
|
88
|
-
"多云存储",
|
|
89
|
-
"聚合上传",
|
|
90
|
-
"云存储管理",
|
|
91
|
-
],
|
|
76
|
+
title: "nextjs-csr",
|
|
77
|
+
description: "nextjs-csr description",
|
|
78
|
+
keywords: ["keywords", "keywords2"],
|
|
92
79
|
og: {
|
|
93
|
-
title: "
|
|
94
|
-
description: "
|
|
95
|
-
image: "https://
|
|
96
|
-
url: "https://
|
|
80
|
+
title: "nextjs-csr",
|
|
81
|
+
description: "nextjs-csr",
|
|
82
|
+
image: "https://nextjs-csr.com/pwa-512x512.png",
|
|
83
|
+
url: "https://nextjs-csr.com",
|
|
97
84
|
type: "website",
|
|
98
85
|
},
|
|
99
86
|
twitter: {
|
|
100
87
|
card: "summary_large_image",
|
|
101
|
-
title: "
|
|
102
|
-
description: "
|
|
103
|
-
image: "https://
|
|
88
|
+
title: "nextjs-csr",
|
|
89
|
+
description: "nextjs-csr",
|
|
90
|
+
image: "https://nextjs-csr.com/pwa-512x512.png",
|
|
104
91
|
},
|
|
105
92
|
jsonLd: {
|
|
106
93
|
"@context": "https://schema.org",
|
|
107
94
|
"@type": "WebSite",
|
|
108
95
|
name: "OneFile",
|
|
109
|
-
url: "https://
|
|
110
|
-
description: "
|
|
96
|
+
url: "https://nextjs-csr.com",
|
|
97
|
+
description: "nextjs-csr。",
|
|
111
98
|
publisher: {
|
|
112
99
|
"@type": "Organization",
|
|
113
100
|
name: "OneFile",
|
|
114
101
|
logo: {
|
|
115
102
|
"@type": "ImageObject",
|
|
116
|
-
image: "https://
|
|
103
|
+
image: "https://nextjs-csr.com/pwa-512x512.png",
|
|
117
104
|
},
|
|
118
105
|
},
|
|
119
106
|
},
|
package/package.json
CHANGED