1
1
mirror of https://github.com/reduxjs/redux-devtools.git synced 2025-08-13 08:34:54 +03:00
redux-devtools/packages/redux-devtools-slider-monitor/examples/todomvc/webpack.config.prod.js
Nathan Bierema c924091e8c
Rename redux-slider-monitor to redux-devtools-slider-monitor ()
* Rename redux-slider-monitor to redux-devtools-slider-monitor

* Fix
2020-08-06 08:02:35 -04:00

9 lines
252 B
JavaScript

// NOTE: This config is used for deploy to gh-pages
const webpack = require('webpack');
const devConfig = require('./webpack.config');
devConfig.entry = './index';
devConfig.plugins = [new webpack.NoEmitOnErrorsPlugin()];
module.exports = devConfig;