feat: enhance deployment output logging and update background image handling in Home component

This commit is contained in:
sha
2025-06-20 17:12:25 +03:00
parent 946adf5ed6
commit 7ff2985fb0
3 changed files with 23 additions and 16 deletions
+7 -1
View File
@@ -38,7 +38,13 @@ jobs:
NODE_ENV: production
- name: List build output
run: ls -la dist/
run: |
echo "=== Dist directory contents ==="
ls -la dist/
echo "=== Assets directory contents ==="
ls -la dist/assets/ || echo "No assets directory"
echo "=== Looking for background images ==="
find dist/ -name "*background*" -type f || echo "No background files found"
- name: Setup Pages
uses: actions/configure-pages@v4