To use components from bower you need to add two things to webpack:
Let webpack look in the bower_components folder.
Let webpack use the main field from the bower.json file.
Configuration
See configuration resolve.modulesDirectories and list of plugins ResolverPlugin.
var path = require("path");
var webpack = require("webpack");
module.exports = {
resolve: {
root: [path.join(__dirname, "bower_components")]
},
plugins: [
new webpack.ResolverPlugin(
new w