Skip to content

Instantly share code, notes, and snippets.

@jkinkead
Created October 19, 2018 00:25
Show Gist options
  • Save jkinkead/a6fc25bdea0f8c1f2a88b4a114878d27 to your computer and use it in GitHub Desktop.
Save jkinkead/a6fc25bdea0f8c1f2a88b4a114878d27 to your computer and use it in GitHub Desktop.
@babel/react snippet for webpack config
...
module: {
rules: [{
test: /\.js?$/,
loader: 'babel-loader',
options: {
presets: ["@babel/react", ["@babel/preset-env", {"modules": false}]]
},
exclude: /node_modules/
}]
},
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment