Created
June 9, 2018 00:41
-
-
Save ssougnez/f6c9c9d9c72c32687976f8b3e7ff2b9d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ... | |
| module.exports = { | |
| ... | |
| module: { | |
| rules: [ | |
| ... | |
| { | |
| test: /\.(png|jpg|gif)$/, | |
| use: { | |
| loader: "file-loader?name=img/[name].[ext]" | |
| } | |
| } | |
| ] | |
| }, | |
| ... | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment