From da0fa70a53e428b735dd25b69393ad2c636083d9 Mon Sep 17 00:00:00 2001
From: Whiskey <scott@deltapaintball.com>
Date: Sun, 11 Aug 2019 07:29:11 -0400
Subject: [PATCH] Images missing in webpack 4 (#535)

Fix for #509 courtesy of lamphej and brightgems.
---
 {{cookiecutter.app_name}}/webpack.config.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/{{cookiecutter.app_name}}/webpack.config.js b/{{cookiecutter.app_name}}/webpack.config.js
index 0491cd23..cb4d4e7f 100644
--- a/{{cookiecutter.app_name}}/webpack.config.js
+++ b/{{cookiecutter.app_name}}/webpack.config.js
@@ -80,6 +80,7 @@ module.exports = {
     new ManifestRevisionPlugin(path.join(__dirname, '{{cookiecutter.app_name}}', 'webpack', 'manifest.json'), {
       rootAssetPath,
       ignorePaths: ['/js', '/css'],
+      extensionsRegex: /\.(ttf|eot|svg|png|jpe?g|gif|ico)$/i,
     }),
   ].concat(debug ? [] : [
     // production webpack plugins go here
-- 
GitLab