Skip to content

Commit c91a325

Browse files
committed
update dependencies
1 parent 17484cc commit c91a325

File tree

8 files changed

+2010
-1431
lines changed

8 files changed

+2010
-1431
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### [9.10.0](https://github.com/xdevguild/nextjs-dapp-template/releases/tag/v9.10.0) (2024-11-09)
2+
- update Next
3+
- update useElven
4+
- update other dependencies
5+
16
### [9.9.0](https://github.com/xdevguild/nextjs-dapp-template/releases/tag/v9.9.0) (2024-07-13)
27
- support for multiple tabs and transactions signing
38

app/page.tsx

+8-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,14 @@ const Home: NextPage = () => {
5151
>
5252
Buildo.dev
5353
</a>{' '}
54-
app.
54+
app. Check the source at{' '}
55+
<a
56+
href="https://github.com/xdevguild/buildo.dev"
57+
className="underline font-bold"
58+
>
59+
xDevGuild
60+
</a>
61+
.
5562
</div>
5663
</CardContent>
5764
</Card>

components/elven-ui/login-modal-button.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export const LoginModalButton: FC<LoginModalButtonProps> = ({
5151
<Dialog open={isOpen} onOpenChange={onCloseComplete}>
5252
{isLoggedIn ? (
5353
<Button variant="outline" onClick={() => logout()}>
54-
Logout
54+
Disconnect
5555
</Button>
5656
) : (
5757
<Button variant="outline" onClick={handleOpen}>

components/theme-provider.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import * as React from 'react';
44
import { ThemeProvider as NextThemesProvider } from 'next-themes';
5-
import { type ThemeProviderProps } from 'next-themes/dist/types';
5+
import { type ThemeProviderProps } from 'next-themes';
66

77
export const ThemeProvider = ({ children, ...props }: ThemeProviderProps) => {
88
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;

next-env.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/basic-features/typescript for more information.
5+
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.

next.config.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
/** @type {import('next').NextConfig} */
22

3-
const externals = ['pino-pretty', 'lokijs', 'utf-8-validate', 'bufferutil'];
4-
53
const nextConfig = {
64
webpack: (config) => {
7-
config.externals.push(...externals);
5+
config.resolve.fallback = { fs: false };
6+
config.externals.push('pino-pretty', 'lokijs', 'encoding', {
7+
bufferutil: 'bufferutil',
8+
'utf-8-validate': 'utf-8-validate',
9+
});
810
return config;
911
},
1012
eslint: {

0 commit comments

Comments
 (0)