Skip to content

Commit

Permalink
fix:docs reference scripts path problem (#4535)
Browse files Browse the repository at this point in the history
Signed-off-by: jingyang <3161362058@qq.com>
  • Loading branch information
zjy365 authored Feb 23, 2024
1 parent 8ca7069 commit 8d39423
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions docs/website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,12 +228,12 @@ const config = {
},
scripts: [
{
src: "wow.min.js",
async: false,
src: "/wow.min.js",
async: true
},
{
src: "global.js",
async: true,
src: "/global.js",
async: true
}
],
headTags: [
Expand Down
6 changes: 3 additions & 3 deletions docs/website/src/components/Highlight/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ export default function LinkButton({ content, url }) {
fill="white"
/>
<path
fill-rule="evenodd"
clip-rule="evenodd"
fillRule="evenodd"
clipRule="evenodd"
d="M15.8655 8.91175C15.8655 12.9066 12.6386 16.145 8.65801 16.145C6.54534 16.145 4.64497 15.2328 3.32666 13.7794C3.40647 13.8405 3.48821 13.8993 3.5718 13.9555C4.12312 14.3266 4.74329 14.5824 5.3953 14.7077C6.0473 14.833 6.71777 14.8252 7.36669 14.6847C8.01561 14.5442 8.62968 14.274 9.17225 13.8901C9.71481 13.5062 10.1748 13.0166 10.5246 12.4504C10.8745 11.8842 11.1071 11.2531 11.2086 10.5947C11.3101 9.93636 11.2784 9.26421 11.1153 8.6184C11.0879 8.52673 11.0605 8.43505 11.0422 8.34338C11.0424 8.34032 11.0424 8.33726 11.0422 8.33421C10.9937 8.11136 10.9692 7.88392 10.9691 7.65581C10.9729 6.9305 11.2208 6.22775 11.6724 5.66153C12.1241 5.09532 12.7532 4.69886 13.4576 4.53647C13.7482 4.46947 14.0446 4.44393 14.3383 4.45893C15.2952 5.68657 15.8655 7.23232 15.8655 8.91175Z"
fill="white"
/>
Expand All @@ -44,4 +44,4 @@ export default function LinkButton({ content, url }) {
</a>
</div>
);
}
}

0 comments on commit 8d39423

Please sign in to comment.