@rxdrag/website-lib 0.0.33 → 0.0.34

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdrag/website-lib",
3
- "version": "0.0.33",
3
+ "version": "0.0.34",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./index.ts"
@@ -33,8 +33,8 @@
33
33
  "clsx": "^2.1.0",
34
34
  "react": "^18.2.0",
35
35
  "react-dom": "^18.2.0",
36
- "@rxdrag/rxcms-models": "0.3.61",
37
- "@rxdrag/website-lib-core": "0.0.34"
36
+ "@rxdrag/rxcms-models": "0.3.62",
37
+ "@rxdrag/website-lib-core": "0.0.35"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "astro": "^4.0.0 || ^5.0.0"
@@ -32,6 +32,7 @@ const {
32
32
 
33
33
  const title = propTitle || seoTitle || "YiZhanFei";
34
34
 
35
+ //暂时不输出canonicalUrl非必须
35
36
  const canonicalURL = Astro.url.href;
36
37
  const imageUrl = ogImage?.file?.url || "";
37
38
  ---
@@ -42,7 +43,7 @@ const imageUrl = ogImage?.file?.url || "";
42
43
  <meta name="author" content={seoAuthor} />
43
44
  <meta name="publisher" content={publisher} />
44
45
  <meta name="robots" content={seoRobots || "index, follow"} />
45
- <link rel="canonical" href={canonicalURL} />
46
+ <!-- <link rel="canonical" href={canonicalURL} /> -->
46
47
 
47
48
  <!-- Open Graph / Facebook -->
48
49
  <meta property="og:type" content={ogType || "website"} />