Skip to content

Instantly share code, notes, and snippets.

@xvv6u577
Created April 26, 2020 03:51
Show Gist options
  • Save xvv6u577/48f3189a5ad49ade9686d3a50e63df17 to your computer and use it in GitHub Desktop.
Save xvv6u577/48f3189a5ad49ade9686d3a50e63df17 to your computer and use it in GitHub Desktop.
webpack config file
module.exports = {
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
"presets": ["@babel/preset-env", "@babel/preset-react"],
"plugins": ['@babel/plugin-proposal-class-properties']
}
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment