Skip to content

Commit

Permalink
add wasmo path
Browse files Browse the repository at this point in the history
  • Loading branch information
Zwiterrion committed Nov 21, 2023
1 parent 70d0363 commit 0570a9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/documentation/app/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ export default function RootLayout({ children }) {
return (
<html lang="en">
<head>
<link href="/dist/pagefind-ui.css" rel="stylesheet" />
<script src="/dist/pagefind-ui.js"></script>
<link href="/wasmo/dist/pagefind-ui.css" rel="stylesheet" />
<script src="/wasmo/dist/pagefind-ui.js"></script>
</head>
<body>{children}</body>
</html>
Expand Down
2 changes: 1 addition & 1 deletion docs/documentation/components/Searchbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Script from 'next/script';
export default function Searchbar({ handleOpen, open }) {
return <div className="w-6/12 ms-auto">
<Script
src="/searchbar.js"
src="/wasmo/searchbar.js"
strategy="lazyOnload"
/>

Expand Down

0 comments on commit 0570a9f

Please sign in to comment.