Skip to content

Instantly share code, notes, and snippets.

@fastfrwrd
Last active December 3, 2015 23:30
Show Gist options
  • Save fastfrwrd/4cfba1130f6f3dd0f37f to your computer and use it in GitHub Desktop.
Save fastfrwrd/4cfba1130f6f3dd0f37f to your computer and use it in GitHub Desktop.
// 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