Skip to content

Commit 593af35

Browse files
committed
brushup
1 parent 3af9950 commit 593af35

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

app/components/shapes/HeadPhoto.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
</g>
3030
</template>
3131
<script lang="ts">
32-
import { urlBasePath } from '~/utils/constants'
3332
import type { CustomPropType } from '~/types/shims-vue'
3433
import { useAnimationParts } from '~/composables/useAnimationParts'
3534
@@ -76,7 +75,7 @@ export default defineComponent({
7675
'image05.png': Image05,
7776
'image06.png': Image06,
7877
}
79-
return `${urlBasePath}/${images[props.parts.src]}`
78+
return images[props.parts.src]
8079
})
8180
8281
const createAnimations = () => {

app/components/timetable/TrackLabel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup lang="ts">
22
const props = withDefaults(defineProps<{
33
trackIndex: 0 | 1 | 2,
4-
isSponsorEvent: boolean
4+
isSponsorEvent?: boolean
55
}>(), {
66
isSponsorEvent: false
77
})

app/server/api/hello.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.

nuxt.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ export default defineNuxtConfig({
3636
class: [isProd ? 'prod-body' : 'body'],
3737
},
3838
},
39-
serverMiddleware: [{ path: '/api/hello', handler: '~/server/api/hello.ts' }],
4039
buildModules: ['@nuxtjs/device', '@nuxtjs/svg', '@nuxtjs/tailwindcss'],
4140
modules: [
4241
[

0 commit comments

Comments
 (0)