Skip to content

Instantly share code, notes, and snippets.

@randomnerd
Created October 27, 2017 15:32
Show Gist options
  • Save randomnerd/1a275654318b0f0b7b7a9b8dd5936218 to your computer and use it in GitHub Desktop.
Save randomnerd/1a275654318b0f0b7b7a9b8dd5936218 to your computer and use it in GitHub Desktop.
brunch config
module.exports = {
server: {
hostname: '0.0.0.0'
},
files: {
javascripts: {
joinTo: {
'app.js': /^app/,
'vendor.js': /^(?!app)/
}
}
},
plugins: {
babel: {
plugins: [
"transform-decorators-legacy"
],
"presets": [
"latest",
"react-app"
]
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment