Skip to content

Instantly share code, notes, and snippets.

@anurag-majumdar
Last active February 8, 2019 21:02
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 anurag-majumdar/7812ad780393fc087ecf0fa19a21ecb4 to your computer and use it in GitHub Desktop.
Save anurag-majumdar/7812ad780393fc087ecf0fa19a21ecb4 to your computer and use it in GitHub Desktop.
module.exports = {
entry: {
// Mention Entry File
},
output: {
// Mention Output Filenames
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader'
}
}
]
},
plugins: [
// Plugins
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment