UNPKG

intreact

Version:

Handling interactions with dumb react components

25 lines (19 loc) 377 B
var config = require('./webpack.config'); config.entry = [ './example/index.js' ]; config.output = { publicPath: '/', filename: 'index.js' }; config.resolve = { alias: { 'intreact': '../index' }, modulesDirectories: ['node_modules'] }; config.devServer = { contentBase: 'example/', stats: {colors: true} }; module.exports = config;