Skip to content

Commit d8cb591

Browse files
committed
fix asset url from absolute to relative
1 parent 9675451 commit d8cb591

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

via-ui/src/components/SwissMap.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ onMounted(() => {
2828
.attr('width', '100%')
2929
.attr('height', '100%')
3030
31-
d3.json('/switzerland-map.json').then((data: any) => {
31+
d3.json('switzerland-map.json').then((data: any) => {
3232
const key = Object.keys(data.objects)[0] as string
3333
const geoData = topojson.feature(data, data.objects[key]) as any
3434

0 commit comments

Comments
 (0)