Skip to content

Commit f6e2a46

Browse files
Fix GitHub Pages runtime rendering (#80)
1 parent d883af7 commit f6e2a46

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
npm ci
1919
export VUE_APP_PUBLIC_PATH=/ionic-vue-boilerplate/
2020
npm run build
21+
cp dist/index.html dist/404.html
2122
2223
- name: Deploy 🚀
2324
uses: JamesIves/github-pages-deploy-action@v4

src/components/inputs/SelectExample.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
@click="cleanSelect()"
3434
/>
3535
</ion-item>
36-
<error-message class="mt-1" :text="errors.value" />
36+
<ErrorMessage class="mt-1" :text="errors.value" />
3737
</template>
3838

3939
<script setup>
@@ -42,6 +42,7 @@ import { IonSelect, IonSelectOption, IonItem } from "@ionic/vue";
4242
import { onMounted, ref, defineProps, defineEmits, toRefs, watch } from "vue";
4343
4444
import Button from "../Button.vue";
45+
import ErrorMessage from "../ErrorMessage.vue";
4546
4647
const emit = defineEmits(["update:modelValue"]);
4748

0 commit comments

Comments
 (0)