I have a project with a classic laravel/vue configuration. I would like to uninstall vue from this laravel project (i.e. all vue dependencies from package.json, all .vue files, all vue-router configuration, etc.) for having a “default” laravel project left. And I would like to know if there is a proper method or a “good practice method” to do so.
I have seen a lot of reverse question on that topic (e.g. add vue to a laravel project already existing), but I’m in the reverse situation (i.e. I would like to uninstall/delete vue from a laravel project already existing).
The only thing that comes to my mind is to gradually delete vue from the project, until there is no more left. Is there anyone with any quicker/safer methods to suggest to me ?
Many thanks !