Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hindmost/6087a847a3bf2607632a478f317adc43 to your computer and use it in GitHub Desktop.
Save hindmost/6087a847a3bf2607632a478f317adc43 to your computer and use it in GitHub Desktop.
cra-browserext-boilerplate: webpack.config.js structure
...
const paths = require('./paths');
...
module.exports = function(webpackEnv) {
...
return {
...
entry: [
isEnvDevelopment &&
require.resolve('react-dev-utils/webpackHotDevClient'),
paths.appIndexJs,
].filter(Boolean),
...
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment