diff options
| author | Camil Staps | 2021-04-13 08:40:25 +0200 | 
|---|---|---|
| committer | Camil Staps | 2021-04-13 08:41:46 +0200 | 
| commit | 2335d02653af518c596b166fbe2bcdcec6c2db11 (patch) | |
| tree | aff0b8414f66d86a55ef8be95d662d5360ba8295 /resources/views/layouts/master.blade.php | |
| parent | Update readme (diff) | |
Use Laravel mix to compile assets
Diffstat (limited to 'resources/views/layouts/master.blade.php')
| -rw-r--r-- | resources/views/layouts/master.blade.php | 8 | 
1 files changed, 3 insertions, 5 deletions
| diff --git a/resources/views/layouts/master.blade.php b/resources/views/layouts/master.blade.php index 98871e1..73f7b61 100644 --- a/resources/views/layouts/master.blade.php +++ b/resources/views/layouts/master.blade.php @@ -23,8 +23,8 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  		<title>λύω-trainer</title> -		<link rel="stylesheet" href="{{ asset('vendor/twbs/bootstrap/dist/css/bootstrap.min.css') }}"/> -		<link rel="stylesheet" href="{{ asset('public/css/luoparsetrainer.css') }}"/> +		<link rel="stylesheet" href="{{ asset('css/bootstrap.min.css') }}"/> +		<link rel="stylesheet" href="{{ asset('css/luoparsetrainer.css') }}"/>  		<script type="text/javascript">  			var app_url = '{{ env('APP_URL') }}'; @@ -40,8 +40,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  			@yield('master-content')  		</div> -		<script src="{{ asset('vendor/components/jquery/jquery.min.js') }}"></script> -		<script src="{{ asset('vendor/twbs/bootstrap/dist/js/bootstrap.min.js') }}"></script> -		<script src="{{ asset('public/js/luoparsetrainer.js') }}"></script> +		<script src="{{ asset('js/app.js') }}"></script>  	</body>  </html> | 
