Skip to content

Commit 28cab1e

Browse files
Fix build failure
1 parent 8605c72 commit 28cab1e

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/HomePage.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<h1>Team 619 Scouting</h1>
3-
<img src="../../assets/frc619_logo.png" class="center"></img>
3+
<img src="@/assets/frc619_logo.png" class="center"></img>
44
<h2>Form Selection</h2>
55
<ul v-if="list.length > 0" class="link-list">
66
<li v-for="[i, name] of list.entries()" :key="i">

vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export default defineConfig({
5151
resolve: {
5252
alias: {
5353
"@": fileURLToPath(new URL("./src", import.meta.url)),
54-
"@a": fileURLToPath(new URL("./pulic/assets", import.meta.url))
54+
"@a": fileURLToPath(new URL("./public/assets", import.meta.url))
5555
},
5656
}
5757
});

0 commit comments

Comments
 (0)