Created
April 26, 2020 03:51
-
-
Save xvv6u577/48f3189a5ad49ade9686d3a50e63df17 to your computer and use it in GitHub Desktop.
webpack config file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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