We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45b31f0 commit c0e5461Copy full SHA for c0e5461
2 files changed
CHANGELOG.md
@@ -4,6 +4,7 @@
4
5
1. Asset paths are now relative (makes it easier to use bundles in subdirectories)
6
2. Removed loading problems for webpack configurations overriding (see https://github.com/newtriks/generator-react-webpack/issues/194)
7
+3. Added missing loader configuration for movies and svg file types
8
9
## 1.5.2:
10
cfg/defaults.js
@@ -47,6 +47,10 @@ function getDefaultModules() {
47
{
48
test: /\.(png|jpg|gif|woff|woff2)$/,
49
loader: 'url-loader?limit=8192'
50
+ },
51
+ {
52
+ test: /\.(mp4|ogg|svg)$/,
53
+ loader: 'file-loader'
54
}
55
]
56
};
0 commit comments