Skip to content

Instantly share code, notes, and snippets.

@harshaktg
Created September 8, 2020 10:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harshaktg/0fb48852243d0860667322ab3a9668a6 to your computer and use it in GitHub Desktop.
Save harshaktg/0fb48852243d0860667322ab3a9668a6 to your computer and use it in GitHub Desktop.
Webpack loader example
module.exports = {
module: {
rules: [
{
test: /\.filename1$/,
use: ["loader-b", "loader-a"]
},
{
test: /\.filename2$/,
use: ["loader-d", "loader-c"]
}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment