Skip to content

Instantly share code, notes, and snippets.

@besabellacyrus
Last active April 25, 2020 04:05
Show Gist options
  • Save besabellacyrus/6568c219092d304b618ecd9fe17963a5 to your computer and use it in GitHub Desktop.
Save besabellacyrus/6568c219092d304b618ecd9fe17963a5 to your computer and use it in GitHub Desktop.
webpack config for Creating Chrome extensions with React
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