Skip to content

Commit

Permalink
fix: separate Vite asset imports for better clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
Ism1tha committed Jan 28, 2025
1 parent 43bcc86 commit 9823137
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion resources/views/application.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
<meta name="csrf-token" content="{{ csrf_token() }}" />
<title>{{ config('app.name') }}</title>
<link rel="icon" href="{{ asset('favicon.ico') }}" />
@vite(['resources/ts/main.tsx', 'resources/css/app.css'])
@vite('resources/ts/main.tsx')
@vite('resources/css/app.css')
</head>

<body>
Expand Down

0 comments on commit 9823137

Please sign in to comment.