We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d2f33b commit 2d4e2e1Copy full SHA for 2d4e2e1
app/pages/index.vue
@@ -96,7 +96,12 @@ function isCollectionIntersecting(collection: CollectionType) {
96
return turf.intersect(collectionBboxPolygon, drawnBboxPolygon) !== null
97
}
98
99
-let countries = await $fetch(url.protocol + '//' + url.host + '/countries.json')
+let countries = await $fetch(
100
+ url.protocol + '//' + url.host + '/countries.json',
101
+ {
102
+ headers,
103
+ },
104
+)
105
106
console.log(countries, url.protocol + '//' + url.host + '/countries.json')
107
0 commit comments