Skip to content

Commit

Permalink
fixed ddev setup process
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Ruf committed Jul 26, 2024
1 parent b62db74 commit 78dacbd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .ddev/commands/web/build-fe
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

cd src/Resources && yarn && yarn build
cd src/Resources && npm install && npm run build-only
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ build:
.

build-vite:
ddev exec npm run --prefix src/Resources build-only

build-vite-check:
ddev exec npm run --prefix src/Resources build

build-vite-dev:
Expand Down
3 changes: 0 additions & 3 deletions assets/app.css

This file was deleted.

3 changes: 0 additions & 3 deletions assets/app.js

This file was deleted.

2 changes: 1 addition & 1 deletion src/Resources/src/components/guest/GuestDay.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<script setup lang="ts">
import { type GuestDay } from '@/api/getInvitationData';
import { useI18n } from 'vue-i18n';
import { translateWeekday } from 'tools/localeHelper';
import { translateWeekday } from '@/tools/localeHelper';
import { computed } from 'vue';
import Slots from '@/components/dashboard/Slots.vue';
import GuestMeal from '@/components/guest/GuestMeal.vue';
Expand Down

0 comments on commit 78dacbd

Please sign in to comment.