Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tomgrv committed Aug 6, 2019
1 parent 320c90a commit 104a5ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ In your package.json file, you can now add following references:
```
"style": "public/css/my-app.css",
"module": "public/js/my-app",
"unpkg": "public/js/my-app.min.js",
"unpkg": "public/js/my-app.js",
```

(You can change 'public' folder by 'dist' folder for module bundling)
Expand All @@ -68,12 +68,12 @@ In your blade template, you can now include generated files:
* Unique css file :

```
<link rel="stylesheet" href="{{ asset('css/my-app.min.css') }}">
<link rel="stylesheet" href="{{ asset('css/my-app.css') }}">
```

* Unique js files & manifest :

```
<script src="{{ asset('js/manifest.js') }}"></script>
<script src="{{ asset('js/my-app.min.js') }}"></script>
<script src="{{ asset('js/my-app.js') }}"></script>
```

0 comments on commit 104a5ea

Please sign in to comment.