Skip to content

Commit

Permalink
Added Webpack configuration to pack 'webpack_in/entry.jsx' as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
maratbn committed Aug 5, 2018
1 parent b14245a commit c4ebaf6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion webpack.config.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
const path = require('path'); const path = require('path');


module.exports = { module.exports = {
entry: [path.join(__dirname, 'webpack_in', 'entry.js')], entry: [path.join(__dirname, 'webpack_in', 'entry.js'),
path.join(__dirname, 'webpack_in', 'entry.jsx')],
module: { module: {
rules: [{ rules: [{
test: /\.jsx$/, test: /\.jsx$/,
Expand Down

0 comments on commit c4ebaf6

Please sign in to comment.