I have bought a Vue template which use vue-cli. The problem is, when I run npm run dev the app is running at http://localhost:8080/
I already have laravel running at https://develop.local/
How to run the vue-cli server to https://develop.local/ (in development mode)?
How to configure and move index.html (from vue directory) into laravel's resources/views/index.blade.php so that it can be processed by laravel's public/index.php ?
Thank you very much.