Created
August 7, 2020 12:35
-
-
Save Eraden/1457c9ec2b021f3af3ca362f3f92dc7e to your computer and use it in GitHub Desktop.
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
/* always use lodash! https://lodash.com/ */ | |
module.exports = { | |
entry: { | |
vendor: ['react', 'react-redux', 'redux', 'moment', 'lodash'], | |
main: 'your-main' | |
}, | |
output: { | |
path: path.join(root, 'dist'), | |
filename: '[name].[hash].js', | |
chunkFilename: '[id].css', | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment