Skip to content

Commit

Permalink
fix: workaround faulty ci-only builds
Browse files Browse the repository at this point in the history
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...
  • Loading branch information
ferferga authored Jan 25, 2025
1 parent 8683596 commit 1932b41
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions frontend/src/components/Layout/Navigation/CommitLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
rel="noopener noreferrer">
<template #prepend>
<JIcon
class="i-mdi:github uno-w-10"
" />
class="i-mdi:github uno-w-10" />
</template>
</VListItem>
</template>
Expand Down
1 change: 0 additions & 1 deletion frontend/types/global/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ declare module 'vue' {
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
VFooter: typeof import('vuetify/components')['VFooter']
VForm: typeof import('vuetify/components')['VForm']
VIcon: typeof import('vuetify/components')['VIcon']
VItemGroup: typeof import('vuetify/components')['VItemGroup']
VList: typeof import('vuetify/components')['VList']
VListItem: typeof import('vuetify/components')['VListItem']
Expand Down
1 change: 1 addition & 0 deletions frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export default defineConfig({
/**
* See main.ts for an explanation of this target
*/
minify: false,
target: 'esnext',
cssCodeSplit: true,
cssMinify: 'lightningcss',
Expand Down
5 changes: 2 additions & 3 deletions packages/ui-toolkit/src/components/JProgressCircular.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<template>
<svg
xmlns="http://www.w3.org/2000/svg"
<div
:class="{
'j-progress-circular--indeterminate': indeterminate,
}"
Expand All @@ -26,7 +25,7 @@
:stroke-width
:stroke-dasharray="CIRCUMFERENCE"
:stroke-dashoffset="`${CIRCUMFERENCE}px`" />
</svg>
</div>
</template>

<script setup lang="ts">
Expand Down

0 comments on commit 1932b41

Please sign in to comment.