Skip to content

Commit 18a482d

Browse files
authored
Merge branch 'main' into feature/fet-1795-moonpay-option-to-use-credit-or-debit-card-doesnt-always
2 parents d90560e + 047e540 commit 18a482d

File tree

7 files changed

+17
-364
lines changed

7 files changed

+17
-364
lines changed

next.config.mjs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { execSync } from 'child_process'
77
import path, { dirname } from 'path'
88
import { fileURLToPath } from 'url'
99

10-
import { withSentryConfig } from '@sentry/nextjs'
1110
import StylelintPlugin from 'stylelint-webpack-plugin'
1211

1312
const __dirname = dirname(fileURLToPath(import.meta.url))
@@ -255,12 +254,4 @@ if (process.env.ANALYZE) {
255254
plugins.push(withBundleAnalyzer({ enabled: true }))
256255
}
257256

258-
if (process.env.CI && process.env.NODE_ENV === 'production' && !process.env.NEXT_PUBLIC_IPFS) {
259-
plugins.push((config) =>
260-
withSentryConfig(config, {
261-
silent: false,
262-
}),
263-
)
264-
}
265-
266257
export default plugins.reduce((acc, next) => next(acc), nextConfig)

next.config.wizardcopy.js

Lines changed: 0 additions & 26 deletions
This file was deleted.

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
"dev:holesky": "NEXT_PUBLIC_CHAIN_NAME=holesky pnpm dev",
77
"dev:sepolia": "NEXT_PUBLIC_CHAIN_NAME=sepolia pnpm dev",
88
"dev:https": "next dev --experimental-https --port 443",
9+
"dev:https:holesky": "NEXT_PUBLIC_CHAIN_NAME=holesky pnpm dev:https",
10+
"dev:https:sepolia": "NEXT_PUBLIC_CHAIN_NAME=sepolia pnpm dev:https",
911
"dev:nlocal": "NEXT_PUBLIC_PROVIDER=http://localhost:8545 NEXT_PUBLIC_AVUP_ENDPOINT=http://localhost:8787 pnpm dev",
1012
"dev:localname": "NEXT_PUBLIC_PROVIDER=\"http://$(\"hostname\"):8545\" && NEXT_PUBLIC_AVUP_ENDPOINT=\"http://$(\"hostname\"):8787\" && NEXT_PUBLIC_GRAPH_URI=\"http://$(\"hostname\"):8000/subgraphs/name/graphprotocol/ens\" && pnpm dev",
1113
"dev:glocal": "SWC_CACHE=false rm -rf .next && NEXT_PUBLIC_GRAPH_URI=http://localhost:8000/subgraphs/name/graphprotocol/ens NEXT_PUBLIC_ETH_NODE=anvil pnpm dev:nlocal",
@@ -54,19 +56,18 @@
5456
"@ensdomains/ens-test-env": "0.6.0",
5557
"@ensdomains/ensjs": "4.0.3-alpha.12",
5658
"@ensdomains/thorin": "1.0.0-beta.26",
59+
"@getpara/rainbowkit": "1.2.0-dev.6",
60+
"@getpara/rainbowkit-wallet": "1.2.0-dev.5",
5761
"@metamask/post-message-stream": "^6.1.2",
5862
"@metamask/providers": "^14.0.2",
5963
"@noble/hashes": "^1.3.2",
60-
"@sentry/nextjs": "7.43.x",
6164
"@splidejs/react-splide": "^0.7.12",
6265
"@svgr/webpack": "^8.1.0",
6366
"@tanstack/query-persist-client-core": "5.22.2",
6467
"@tanstack/query-sync-storage-persister": "5.22.2",
6568
"@tanstack/react-query": "5.22.2",
6669
"@tanstack/react-query-devtools": "^5.59.0",
6770
"@tanstack/react-query-persist-client": "5.22.2",
68-
"@getpara/rainbowkit": "1.2.0-dev.6",
69-
"@getpara/rainbowkit-wallet": "1.2.0-dev.5",
7071
"@wagmi/core": "2.13.3",
7172
"calendar-link": "^2.8.0",
7273
"dequal": "2.0.3",
@@ -80,10 +81,10 @@
8081
"idb-keyval": "^6.2.1",
8182
"immer": "^9.0.15",
8283
"iso-639-1": "^2.1.15",
83-
"node-forge": "1.3.1",
8484
"markdown-to-jsx": "^7.7.3",
8585
"next": "13.5.8",
8686
"node-fetch": "^3.3.2",
87+
"node-forge": "1.3.1",
8788
"posthog-js": "^1.217.0",
8889
"react": "*",
8990
"react-confetti": "6.1.0",

0 commit comments

Comments
 (0)