/var/www/flurhymez/vendor/spatie/laravel-medialibrary/docs
NameSizeModeActions
advanced-usage/-0755rm
api/-0755rm
basic-usage/-0755rm
converting-images/-0755rm
converting-other-file-types/-0755rm
downloading-media/-0755rm
handling-uploads-with-media-library-pro/-0755rm
images/-0755rm
responsive-images/-0755rm
working-with-media-collections/-0755rm
about-us.md4620644editdlrm
changelog.md1800644editdlrm
installation-setup.md118570644editdlrm
introduction.md26860644editdlrm
questions-issues.md6050644editdlrm
requirements.md10880644editdlrm
support-us.md5530644editdlrm
troubleshooting.md9770644editdlrm
upgrading.md2240644editdlrm
_index.md1350644editdlrm
Edit: /var/www/flurhymez/vendor/spatie/laravel-medialibrary/docs/troubleshooting.md (977B)
--- title: Troubleshooting weight: 8 --- Here are some common problems and how to solve them. ## Cannot find module '@babel/compat-data/corejs3-shipped-proposals' This is caused by a compatibility issue between a version of `@babel/preset-env` that an older release of Laravel Mix required, and certain versions of node. ### Fix ``` yarn upgrade laravel-mix ``` This will upgrade your installation of `laravel-mix` to a version that requires `@babel/preset-env: ^7.9`. You shouldn't have to change anything else, since this upgrade is a non-breaking change. ## Cannot find name 'describe' / Cannot find name 'test' This is your TypeScript checker finding methods that it does not have types for. ### Fix You should add `"include": ["resources/**/*"]` to your tsconfig.json (edit the path to where you manage your JS), or add `"exclude": ["vendor"]`. This doesn't normally happen with other libraries because `node_modules` is excluded from type checking by default.