Skip to content

Commit 50574be

Browse files
authored
fix: workaround faulty ci-only builds
For some reason, the Vue library is built in a faulty way when using Docker buildx's docker-container driver. The build works flawlessly when using the normal docker build command (which is now an alias to docker buildx buiold, but with the docker driver) and in the host system using normal commands. Really strange error...
1 parent 8683596 commit 50574be

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

frontend/types/global/components.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ declare module 'vue' {
127127
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
128128
VFooter: typeof import('vuetify/components')['VFooter']
129129
VForm: typeof import('vuetify/components')['VForm']
130-
VIcon: typeof import('vuetify/components')['VIcon']
131130
VItemGroup: typeof import('vuetify/components')['VItemGroup']
132131
VList: typeof import('vuetify/components')['VList']
133132
VListItem: typeof import('vuetify/components')['VListItem']

frontend/vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ export default defineConfig({
7373
/**
7474
* See main.ts for an explanation of this target
7575
*/
76+
minify: false,
7677
target: 'esnext',
7778
cssCodeSplit: true,
7879
cssMinify: 'lightningcss',

packages/ui-toolkit/src/components/JProgressCircular.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<template>
2-
<svg
3-
xmlns="http://www.w3.org/2000/svg"
2+
<div
43
:class="{
54
'j-progress-circular--indeterminate': indeterminate,
65
}"
@@ -26,7 +25,7 @@
2625
:stroke-width
2726
:stroke-dasharray="CIRCUMFERENCE"
2827
:stroke-dashoffset="`${CIRCUMFERENCE}px`" />
29-
</svg>
28+
</div>
3029
</template>
3130

3231
<script setup lang="ts">

0 commit comments

Comments
 (0)