Skip to content

Commit

Permalink
Step 2: Configure Webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
zsolt-nagy committed May 14, 2015
1 parent 3a231f2 commit f0ffab1
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions webpack.config.js
@@ -0,0 +1,15 @@
module.exports = {
entry : './src/main.js',
output : {
path : __dirname,
filename : 'myaccount.dist.js'
},
module : {
loaders: [ {
test : /\.js$/,
exclude : /node_modules/,
loader : 'babel-loader'
}
]
}
};

0 comments on commit f0ffab1

Please sign in to comment.