mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
11 lines
256 B
JavaScript
11 lines
256 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;
|