Skip to content

Commit

Permalink
Procfile added, using mix instead of elixir
Browse files Browse the repository at this point in the history
  • Loading branch information
anindya-dhruba committed Jan 7, 2018
1 parent 45f5b68 commit 74a54ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web: vendor/bin/heroku-php-apache2 public
2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions resources/views/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<title>{{ config('app.name') }} - Starter Boilerplate SPA made with Laravel 5.4, JWT Auth, Vue 2, Vue-router 2, Vuex 2, Axios and <3</title>

<link href="{{ elixir('/css/app.css') }}" rel="stylesheet">
<link href="{{ mix('/css/app.css') }}" rel="stylesheet">
<script>
window.Laravel = {!! json_encode([
'csrfToken' => csrf_token(),
Expand All @@ -25,6 +25,6 @@
<app></app>
</div>

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

0 comments on commit 74a54ba

Please sign in to comment.