fix: try public flux

This commit is contained in:
u00lipp
2025-10-31 14:23:57 +01:00
parent 773c871d30
commit 1691426fe3
+4 -1
View File
@@ -63,7 +63,10 @@ RUN mkdir -p /var/log/nginx \
&& chmod -R 664 /var/log/nginx/error.log
# Build frontend assets
RUN npm ci && npm run build
RUN mkdir -p public/flux \
&& cp -a vendor/livewire/flux/dist/flux.min.js public/flux/flux.js \
&& cp -a vendor/livewire/flux/dist/flux.css public/flux/flux.css
# Optimize Laravel configuration
RUN php artisan config:cache && php artisan route:cache && php artisan view:cache && php artisan event:cache