UNPKG

mullet

Version:

Mullet Stack: Facebook in the front. Walmart in the back. (React.js/Hapi)

22 lines (20 loc) 391 B
const path = require('path'); module.exports = { entry: ['./src/components/Main.js'], output: { path: path.join(__dirname, 'public/js'), filename: 'app.built.js' }, module: { loaders: [ { test: /.jsx?$/, loader: 'babel-loader', exclude: /node_modules/, query: { presets: ['es2015', 'react'] } } ] } };