mirror of
https://forgejo.merr.is/annika/isl-vue3.git
synced 2025-12-14 16:45:40 -05:00
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:
parent
d13d93b676
commit
b75ed20047
3 changed files with 58 additions and 8 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue