react-gif-picker
Version:
A react gif picker using giphy API
24 lines (22 loc) • 462 B
JavaScript
var path = require('path');
module.exports = {
context: __dirname,
entry: { app: './example.js' },
devtool: 'inline-source-map',
output: {
filename: './example/public/bundle.js',
publicPath: 'public'
},
module: {
loaders: [
{
test: /\.jsx?$/,
exclude: /(node_modules|bower_components)/,
loader: 'babel'
},
{
test: /\.json$/, loader: 'json', exclude: /node_modules/,
}
]
}
};