Skip to content

Instantly share code, notes, and snippets.

View rafgraph's full-sized avatar

Rafael Pedicini rafgraph

View GitHub Profile
@rafgraph
rafgraph / webpack.config.babel.js
Last active May 29, 2018 05:42
React production build with webpack
import webpack from 'webpack';
export default {
context: __dirname,
entry: './index.js',
output: {
path: `${__dirname}/__build__`,
filename: 'bundle.js',
},
module: {