Created
November 7, 2014 03:41
-
-
Save jackcallister/599a5de9eefbc41bc33f to your computer and use it in GitHub Desktop.
Webpack Component 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
module.exports = { | |
entry: './example/main.js', | |
output: { | |
filename: './build/bundle.js' | |
}, | |
module: { | |
loaders: [ | |
{test: /\.js$/, loader: 'jsx-loader'} | |
] | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment