Vendor Assets (bootstrap, jquery, etc.) should be accessed via CDN rather than stored on the web server. This will minimize the server resource requirements which at the moment are minimal.
e.g.
src(vendor/bootstrap/boostrap.min)
becomes
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous">
Vendor Assets (bootstrap, jquery, etc.) should be accessed via CDN rather than stored on the web server. This will minimize the server resource requirements which at the moment are minimal.
e.g.
src(vendor/bootstrap/boostrap.min)
becomes
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous">