Skip to content
This repository has been archived by the owner on Jul 12, 2021. It is now read-only.

Commit

Permalink
fix: update mix method paths in views
Browse files Browse the repository at this point in the history
  • Loading branch information
innocenzi committed Aug 4, 2020
1 parent da5e810 commit 8f22787
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/default/resources/views/layouts/base.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">

<!-- Styles -->
<link rel="stylesheet" href="{{ url(mix('css/app.css')) }}">
<link rel="stylesheet" href="{{ url(mix('build/app.css')) }}">
@livewireStyles

<!-- CSRF Token -->
Expand All @@ -27,7 +27,7 @@
<body>
@yield('body')

<script src="{{ mix('js/app.js') }}"></script>
<script src="{{ mix('build/app.js') }}"></script>
@livewireScripts
</body>
</html>

0 comments on commit 8f22787

Please sign in to comment.