Created
February 7, 2017 04:55
-
-
Save Synvox/92a64d3cee07dde61014c81daa148ab2 to your computer and use it in GitHub Desktop.
Example webpack
This file contains hidden or 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: './index.js', | |
output: { | |
filename: './bundle.js', | |
path: '/' | |
}, | |
module: { | |
rules: [ | |
{ | |
test: /\.js?$/, | |
loader: 'babel-loader', // npm install --save-dev babel-loader | |
exclude: /node_modules/, | |
}, | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment