Last active
August 31, 2017 19:34
-
-
Save doug2k1/d318fc1f1bf80a3518c0055d03dcf526 to your computer and use it in GitHub Desktop.
Webpack minimal config for React - https://medium.com/douglas-matoso-english/react-minimal-setup-with-webpack-ee7f724df031
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
const path = require('path') | |
module.exports = { | |
entry: './src/index.js', | |
output: { | |
path: path.resolve('dist'), | |
filename: 'bundle.js' | |
}, | |
module: { | |
rules: [ | |
{ | |
test: /\.js$/, | |
loader: 'babel-loader' | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment