diff --git a/next.config.js b/next.config.js index 746aa83..792c5ac 100644 --- a/next.config.js +++ b/next.config.js @@ -17,7 +17,7 @@ const nextConfig = { swcMinify: true, - webpack: function (config, options) { + webpack: (config: any, options: any) => { config.experiments = { asyncWebAssembly: true, layers: true, diff --git a/src/constants/wallet.ts b/src/constants/wallet.ts index 848987c..9f50160 100644 --- a/src/constants/wallet.ts +++ b/src/constants/wallet.ts @@ -55,6 +55,10 @@ export const WALLETS: Record< image: "https://ticketingserver.nucast.io/storage/v1/object/public/web-assets/wallets/typhon.svg", }, + "typhoncip30": { + title: "TyphonWallet", + image: "https://ticketingserver.nucast.io/storage/v1/object/public/web-assets/wallets/typhon.svg", +}, nufi: { title: "NuFi", image: diff --git a/tsconfig.json b/tsconfig.json index 86eed5c..a125dd6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -46,6 +46,8 @@ ".next/types/**/*.ts" ], "exclude": [ - "node_modules" + "node_modules", + "public/sw.js", + "public/workbox-*.js" ] } \ No newline at end of file