Skip to content

Commit

Permalink
added missing resources to app.js
Browse files Browse the repository at this point in the history
  • Loading branch information
katsulon committed Dec 9, 2024
1 parent 0668141 commit 4410349
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 5 additions & 0 deletions timeliner/resources/js/app.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import './bootstrap';

import './timelinelistener';
import './formfunctions';

import '../css/timelinestyle.css';

import Alpine from 'alpinejs';

window.Alpine = Alpine;
Expand Down
2 changes: 0 additions & 2 deletions timeliner/resources/views/timeline/partials/comment.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
@vite(['resources/js/formfunctions.js'])

<div class="card mb-3">
<h5 class="card-header">{{ $comment->user->name }}</h5>
<div class="card-body">
Expand Down
2 changes: 0 additions & 2 deletions timeliner/resources/views/timeline/timeline.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
</h2>
</x-slot>

@vite(['resources/js/timelinelistener.js', 'resources/css/timelinestyle.css', 'resources/js/formfunctions.js'])

@if (session('success'))
<div class="alert alert-success">
{{ session('success') }}
Expand Down

0 comments on commit 4410349

Please sign in to comment.