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
vite v6.2.0 building for production...
✓ 1 modules transformed.
✗ Build failed in 26ms
error during build:
Could not resolve entry module "resources/css/filament/member/theme.css".
at getRollupError (file:///var/www/myapp/node_modules/rollup/dist/es/shared/parseAst.js:397:41)
at error (file:///var/www/myapp/node_modules/rollup/dist/es/shared/parseAst.js:393:42)
at ModuleLoader.loadEntryModule (file:///var/www/myapp/node_modules/rollup/dist/es/shared/node-entry.js:21132:20)
at async Promise.all (index 2)
vite v6.2.0 building for production...
✓ 1 modules transformed.
✗ Build failed in 26ms
error during build:
Could not resolve entry module "resources/css/filament/member/theme.css".
at getRollupError (file:///var/www/myapp/node_modules/rollup/dist/es/shared/parseAst.js:397:41)
at error (file:///var/www/myapp/node_modules/rollup/dist/es/shared/parseAst.js:393:42)
at ModuleLoader.loadEntryModule (file:///var/www/myapp/node_modules/rollup/dist/es/shared/node-entry.js:21132:20)
at async Promise.all (index 2)
btw, i am using node v.20.19 and npm 10.8. in my server
No description
10 Replies
toeknee
toeknee7d ago
have you ran composer install first? Does npm run build work locally?
Arlyzatun
ArlyzatunOP7d ago
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?
Matthew
Matthew7d ago
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/?
Arlyzatun
ArlyzatunOP7d ago
there is no /member sir
No description
Matthew
Matthew7d ago
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
Arlyzatun
ArlyzatunOP7d ago
but in local development it is ok, the content og resource also same but in local development it works well
Matthew
Matthew7d ago
but here you say you still get error locally do you have the ../member/ locally?
Arlyzatun
ArlyzatunOP7d ago
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
Matthew
Matthew7d ago
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?
Arlyzatun
ArlyzatunOP6d ago
yes it solved

Did you find this page helpful?