Skip to content

Instantly share code, notes, and snippets.

@ericpkatz
Created August 17, 2022 11:23
Show Gist options
  • Save ericpkatz/65fdc80815984ecd39dbe1b45c4340b9 to your computer and use it in GitHub Desktop.
Save ericpkatz/65fdc80815984ecd39dbe1b45c4340b9 to your computer and use it in GitHub Desktop.
Simple Webpack Config
module.exports = {
devtool: 'source-map',
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
options: {
presets: ['@babel/preset-react']
}
}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment