UNPKG

react-uikit-components

Version:

React UIkit components for UIkit CSS framework.

46 lines (40 loc) 923 B
// For instructions about this file refer to // webpack and webpack-hot-middleware documentation var webpack = require('webpack'); var path = require('path'); module.exports = { debug: true, devtool: '#eval-source-map', context: path.join(__dirname, 'src'), entry: [ // 'webpack/hot/dev-server', // 'webpack-hot-middleware/client', './app' ], output: { path: path.join(__dirname, './docs/scripts/'), publicPath: '/', filename: 'bundle.js' }, plugins: [ new webpack.optimize.OccurenceOrderPlugin(), new webpack.HotModuleReplacementPlugin(), new webpack.NoErrorsPlugin(), new webpack.ProvidePlugin({ React : 'react', ReactDOM: 'react-dom' }) ], module: { loaders: [ { test: /\.(js|jsx)$/, exclude: /node_modules/, loader: 'babel' }, { test: /\.json$/, loader: 'json' } ] } };