File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 2121 },
2222 "[markdown]" : {
2323 "editor.defaultFormatter" : " esbenp.prettier-vscode"
24+ },
25+ "[javascript]" : {
26+ "editor.defaultFormatter" : " biomejs.biome"
2427 }
2528}
Original file line number Diff line number Diff line change 33 *
44 */
55async function fetchChainsFromApi ( ) {
6- const res = await fetch ( ` https://api.thirdweb.com/v1/chains` , {
6+ const res = await fetch ( " https://api.thirdweb.com/v1/chains" , {
77 headers : {
88 "Content-Type" : "application/json" ,
99 } ,
@@ -55,7 +55,9 @@ module.exports = {
5555 ] ,
5656 } ,
5757 exclude : [ "/chain/validate" ] ,
58- transform : async ( config , path ) => {
58+ transform : async ( config , _path ) => {
59+ let path = _path ;
60+
5961 // ignore og image paths
6062 if ( path . includes ( "_og" ) ) {
6163 return null ;
Original file line number Diff line number Diff line change @@ -40,7 +40,11 @@ const securityHeaders = [
4040const redirects = require ( "./redirects" ) ;
4141
4242// add framer paths here
43- const FRAMER_PATHS = [ "/connect/sign-in" , "/contracts/modular-contracts" ] ;
43+ const FRAMER_PATHS = [
44+ "/connect/sign-in" ,
45+ "/contracts/modular-contracts" ,
46+ "/unlimited-wallets" ,
47+ ] ;
4448
4549/**
4650 * @returns {import('next').RemotePattern[] }
You can’t perform that action at this time.
0 commit comments