Merge 120243868b58cf9885a736aa4817923233f52f78 into 56c0c566dcdde20bd14987c621e4ffda17ceb53d

This commit is contained in:
Luka Zakrajšek 2017-04-17 19:30:09 +00:00 committed by GitHub
commit 6e377c2936

View File

@ -120,7 +120,7 @@ module.exports = {
{ test: /\.css$/,
loader: ExtractTextPlugin.extract(
'style-loader', 'css-loader') },
{ test: /\.(woff2?|ttf|eot|svg|png|jpe?g|gif)$/,
{ test: /\.(woff2?|ttf|eot|svg|png|jpe?g|gif)($|\?)/,
loader: 'file' }
]
},
@ -170,7 +170,7 @@ Now you need to include the files in your template. This will do it:
```html+jinja
<link rel="stylesheet" href="{{
'/static/gen/styles.css'|asseturl }}">
'/static/gen/styles.css'|url }}">
<script type=text/javascript src="{{
'/static/gen/app.js'|asseturl }}" charset="utf-8"></script>
'/static/gen/app.js'|url }}" charset="utf-8"></script>
```