💬Cannot read properties of undefined (reading 'reduceRight')の対処法2023/05/15に公開2023/05/16NuxtTestVitesturlqtechNuxt * vitestで以前まで通っていたテストCannot read properties of undefined (reading 'reduceRight')で落ちるようになったので、その原因と対処法のメモ 原因 urql/coreのアプデでexchangesを明確に指定しないとエラーが出るようになった。 https://github.com/urql-graphql/urql/discussions/3145 対処法 createClientでexchangesを指定する。 createClient({ // ... exchanges: [] // exchangeを使用しない場合は空配列を指定しておく Discussion
Discussion