diff --git a/content/docs/guides/webpack/contents.lr b/content/docs/guides/webpack/contents.lr
index 0a688e8b..44befa07 100644
--- a/content/docs/guides/webpack/contents.lr
+++ b/content/docs/guides/webpack/contents.lr
@@ -99,7 +99,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' }
]
},
@@ -149,7 +149,7 @@ Now you need to include the files in your template. This will do it:
```html+jinja
+ '/static/gen/styles.css'|url }}">
+ '/static/gen/app.js'|url }}" charset="utf-8">
```