Modified Dockerfile To Use Bun And Use a Different Build Command

There is a bug, discussed at https://github.com/oven-sh/bun/issues/4754 where running bun for vue-tsc fails for some reason. I am compensating by running `bunx --bun vite build` manually, and ignoring the type checking, since I don't really need that in prod.
This commit is contained in:
Annika Merris 2024-02-04 20:00:07 -05:00
parent d13d93b676
commit b75ed20047
3 changed files with 58 additions and 8 deletions

View file

@ -1,5 +1,4 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@ -7,7 +6,7 @@ const router = createRouter({
{
path: '/',
name: 'home',
component: HomeView
component: () => import('@/views/HomeView.vue')
},
{
path: "/blessing-power",