adding most popular fonts

This commit is contained in:
Codex Agent
2025-11-26 15:32:21 +01:00
parent ecac9507a4
commit 8e860a5218
101 changed files with 1720 additions and 1 deletions

View File

@@ -44,6 +44,11 @@ RUN npm ci --no-audit --prefer-offline
COPY . .
COPY --from=vendor /var/www/html/vendor ./vendor
# Ensure fonts.css exists so Vite can resolve the import even when the
# google fonts sync output is not present in the repository.
RUN mkdir -p public/fonts/google \
&& [ -f public/fonts/google/fonts.css ] || echo '/* placeholder; run php artisan fonts:sync-google to populate */' > public/fonts/google/fonts.css
RUN npm run build
################################################################################