Skip to content

Commit

Permalink
Enable Mix versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
martink635 committed Nov 22, 2020
1 parent d022042 commit 0643a16
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"/js/app.js": "/js/app.js",
"/css/app.css": "/css/app.css"
"/js/app.js": "/js/app.js?id=b751980c738533780833",
"/css/app.css": "/css/app.css?id=0182a30fc208ad0dd4b7"
}
2 changes: 1 addition & 1 deletion resources/views/livewire/streams.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class="absolute left-0 right-0 z-10 w-full pt-6 origin-top-right bg-white rounde
style="max-height: 256px;">
@foreach ($filteredGames as $item)
<div wire:click="filterBy('{{ $item['id'] }}')" x-on:click="open = false"
class="flex space-x-4 w-full items-center justify-between w-full cursor-pointer group {{ $highlightIndex === $loop->index ? 'text-teal-500': '' }}">
class="flex space-x-4 w-full items-center justify-between cursor-pointer group {{ $highlightIndex === $loop->index ? 'text-teal-500': '' }}">
<div class="flex flex-grow space-x-2 truncate">
<x-secondary class="truncate">{{ $item['name'] }}</x-secondary>
@if ($filter === $item['id'])
Expand Down
3 changes: 2 additions & 1 deletion webpack.mix.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ const tailwindcss = require('tailwindcss')
mix.js('resources/js/app.js', 'public/js')
.postCss('resources/css/app.css', 'public/css', [
tailwindcss('./tailwind.config.js')
]);
])
.version();

0 comments on commit 0643a16

Please sign in to comment.