css/js is not working in production
I deployed laravel filament on production server for testing but css / js file are not including or not working
The laravel welcome as proper css / jss applied but when i try to access filament using /admin in url then there is no css / js
Here is Dockerfile that install all dependencies composer and npm and working fine
FROM php:8.2-apache
apt-get install -y \
libzip-dev \
zip \
libicu-dev \
nodejs \
npm
WORKDIR /app
COPY . /app
EXPOSE 8000
CMD php artisan serve --host=0.0.0.0 --port=8000
NEED HELP IN THIS MATTER
The laravel welcome as proper css / jss applied but when i try to access filament using /admin in url then there is no css / js
Here is Dockerfile that install all dependencies composer and npm and working fine
FROM php:8.2-apache
Install dependencies
RUN apt-get update && \apt-get install -y \
libzip-dev \
zip \
libicu-dev \
nodejs \
npm
Install PHP extensions
RUN docker-php-ext-install pdo_mysql zip intlInstall Composer
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composerWORKDIR /app
COPY . /app
Update and install PHP dependencies before running composer install
RUN composer updatePrint more information during composer install for debugging
RUN composer install --verboseInstall and build npm dependencies
RUN npm installRun npm production build
RUN npm run productionEXPOSE 8000
CMD php artisan serve --host=0.0.0.0 --port=8000
NEED HELP IN THIS MATTER

