Skip to content

Instantly share code, notes, and snippets.

@fastfrwrd
Last active December 3, 2015 23:30
// gave me issues
module.exports = {
entry: {
'my-app': './my-app.js'
}
};
// easier to handle if you depend directly on apps elsewhere
module.exports = {
entry: {
'my-app': ['./my-app.js']
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment