Created
April 27, 2017 18:31
-
-
Save igmoweb/be67bef49b23e5db942fbea916afff9f to your computer and use it in GitHub Desktop.
Basic Webpack config
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
var path = require('path'); | |
module.exports = { | |
entry: './foo.js', | |
output: { | |
path: path.resolve(__dirname, 'dist'), | |
filename: 'foo.bundle.js' | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment