UNPKG

react-uikit-components

Version:

React UIkit components for UIkit CSS framework.

50 lines (44 loc) 1.05 kB
// For instructions about this file refer to // webpack and webpack-hot-middleware documentation var webpack = require('webpack'); var path = require('path'); module.exports = { context: path.join(__dirname, 'src'), entry: [ './app' ], output: { path: path.join(__dirname, './docs/scripts/'), publicPath: '/', filename: 'bundle.js' }, plugins: [ new webpack.optimize.OccurenceOrderPlugin(), new webpack.DefinePlugin({ 'process.env': { 'NODE_ENV': JSON.stringify('production') } }), new webpack.optimize.DedupePlugin(), new webpack.optimize.UglifyJsPlugin({ compress: { warnings: false }, comments: false, sourceMap: false, mangle: true, minimize: true }), new webpack.ProvidePlugin({ React : 'react', ReactDOM: 'react-dom' }), new webpack.optimize.AggressiveMergingPlugin() ], module: { loaders: [ { test: /\.(js|jsx)$/, exclude: /node_modules/, loader: 'babel' } ] } };