Skip to content

Instantly share code, notes, and snippets.

@p208p2002
Created May 2, 2018 13:04
Show Gist options
  • Save p208p2002/cbddca5ae10b813bdb2021cb8bd54549 to your computer and use it in GitHub Desktop.
Save p208p2002/cbddca5ae10b813bdb2021cb8bd54549 to your computer and use it in GitHub Desktop.
// webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.(png|jpg|gif)$/,
use: [
{
loader: 'file-loader',
options: {}
}
]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment