Mix manifest not found on Laravel 9 - vite
P粉974462439
P粉974462439 2023-12-11 13:40:48
0
1
457

I have a problem when I run npm run build and it says the mixin manifest cannot be found. This happens when I run in production.

My npm -v is 9.1.2 and running laravel 9, with "php": "^8.0.2".

Has anyone encountered this problem?

I've tried any suggestions for updating npm and still get this error.

P粉974462439
P粉974462439

reply all(1)
P粉451614834

Try running npm install && npm run build.

If you are using Laravel Forge, you can edit the deployment script like this:

cd /home/forge/default
git pull origin $FORGE_SITE_BRANCH

$FORGE_COMPOSER install --no-interaction --prefer-dist --optimize-autoloader

( flock -w 10 9 || exit 1
    echo 'Restarting FPM...'; sudo -S service $FORGE_PHP_FPM reload ) 9>/tmp/fpmlock

if [ -f artisan ]; then
    $FORGE_PHP artisan migrate --force
fi

npm install
npm run build

See this post for reference: https://github.com/innocenzi/laravel -vite/discussions/267

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!