Description
I want to install Laravel Breeze on laravel 9 project but this is the error message I have been getting .
How can i solve this please
View Code
Notifications are disabled
Reason: DisabledForUser Please make sure that the app id is set correctly.
Command Line: C:\xampp\htdocs\Multi-Media-Newspaper\newsportal\node_modules\node-notifier\vendor\snoreToast\snoretoast-x64.exe -appID "Laravel Mix" -pipeName \\.\pipe\notifierPipe-3d21e801-a4dd-47ab-bea0-ded73498d535 -p C:\xampp\htdocs\Multi-Media-Newspaper\newsportal\node_modules\laravel-mix\icons\laravel.png -m "Build successful" -t "Laravel Mix"
To resolve this issue, you can try the following steps:
1. Check your Laravel Mix Configuration: Make sure you have set the correct application ID for your Laravel Mix notifications in your Laravel Mix configuration file (usually webpack.mix.js). The application ID should match the name of your project. Look for the mix.options({}) block in your webpack.mix.js file, and make sure the appName property is set correctly:
~~~
mix.options({ processCssUrls: false, appName: 'YourProjectName', });
~~~
2. Clear Cached Configuration: After updating your Laravel Mix configuration, you may need to clear the cached configuration by running the following command:
~~~
php artisan config:clear
~~~
3. Restart Your Development Server:
0 Likes 0 Comments