Error npm run build
I want to deploy my laravel 11 app in AWS ec2, after i execute npm install, composer install, i wanti to build my nodejs, but i got this error, i dont know why this is happend in my server
btw, i am using node v.20.19 and npm 10.8. in my server

10 Replies
have you ran composer install first?
Does npm run build work locally?
yes, i think, wait i wil rerun composer install
yes, it still error sir
git clone
composer install
npm install
npm run build (error)
Do I need configure nginx first?
Well, the error says that the file doesn't exist
So if you go the mentioned directory, there won't be a theme.css
Judging by the directory, I understand that you created a custom theme, correct?
Can you show the contents of
../member/
?there is no /member sir

Well, that's the issue.
You are telling tailwind to compile the member theme
You either need to create one, or remove the reference from the tailwind config
but in local development it is ok, the content og resource also same but in local development it works well
but here you say you still get error locally
do you have the
../member/
locally?no,no actually in local i use npm run dev, and there is no issue...but now i am trying to deploy my web in aws ec2, i think for deployment we need to build the node right instead running with npm run dev
in this case It doesnt matter if you use build or dev. In the end some files are missing. Assuming you are using github, are you sure you are on the same commit in both local and production?
yes
it solved