Hello, how can I use Bootstrap in a Composer-managed project, I know that if you perform the composer require twbs / bootstrap command, the composer will download and place or the files in the vendor folder of the project, how do I add the code to the pages.
<link href="./vendor/twbs/bootstrap/dist/bootstrap.css">
Obeying the following project structure:
projeto/
---logs/
---public/
---src/
---template/
---tests/
---vendor/
---composer.json
---composer.lock
Would that be the right thing to do?
I believe this is not advisable, is there anything I can do to add it directly? Ex: <link href="./public/assets/bootstrap.css">