Skip to content

Commit 2276135

Browse files
chore: improvements
1 parent b5f4b16 commit 2276135

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

examples/buddybook/index.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
66
<link rel="icon" type="image/png" href="/favicon.png" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>BuddyBook Dogfood</title>
8+
<meta name="description" content="BuddyBook - Create and share your chains" />
9+
<meta property="og:title" content="BuddyBook" />
10+
<meta property="og:description" content="Create and share your chains" />
11+
<meta property="og:url" content="https://buddybook.fun" />
12+
<title>BuddyBook</title>
913
<script>
1014
window.global = window;
1115
window.process = {
Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,6 @@
11
import { Protocols } from '@waku/sdk';
22

3-
// Configure Waku options with browser-compatible settings
43
export const WAKU_NODE_OPTIONS = {
54
defaultBootstrap: true,
6-
libp2p: {
7-
addresses: {
8-
listen: [] // Empty for browser environments
9-
},
10-
connectionManager: {
11-
minConnections: 2
12-
}
13-
},
145
protocols: [Protocols.Store, Protocols.Filter, Protocols.LightPush]
156
};

examples/buddybook/src/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ createRoot(document.getElementById('root')!).render(
2727
<QueryClientProvider client={queryClient}>
2828
<ConnectKitProvider>
2929
<LightNodeProvider options={WAKU_NODE_OPTIONS}>
30-
<Router basename={import.meta.env.BASE_URL}>
30+
<Router basename={'/'}>
3131
<App />
3232
</Router>
3333
</LightNodeProvider>

0 commit comments

Comments
 (0)