We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c85547 commit 2a07dfdCopy full SHA for 2a07dfd
webpack.common.js
@@ -35,6 +35,12 @@ module.exports = {
35
test: /\.(jpg|png|svg)$/,
36
loader: 'url-loader'
37
},
38
+ // loads the icon to the dist directory
39
+ {
40
+ test: new RegExp('\.(' + fileExtensions.join('|') + ')$'),
41
+ loader: "file-loader?name=[name].[ext]",
42
+ exclude: /node_modules/
43
+ },
44
{
45
exclude: /node_modules/,
46
test: /\.tsx?$/,
0 commit comments