Last active
April 25, 2020 04:05
-
-
Save besabellacyrus/6568c219092d304b618ecd9fe17963a5 to your computer and use it in GitHub Desktop.
webpack config for Creating Chrome extensions with React
This file contains 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 = { | |
entry: "./src/popup.jsx", | |
resolve: { | |
extensions: [".js", ".jsx"] | |
}, | |
module: { | |
rules: [ | |
{ | |
test: /\.jsx?$/, | |
exclude: /(node_modules|bower_components)/, | |
use: { | |
loader: 'babel-loader', | |
options: { | |
presets: ['@babel/preset-react'] | |
} | |
} | |
} | |
] | |
}, | |
mode: "development" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment