chore: tooltip update / remove css loader (#985)

* fix: Add suspended filter to people management #984

* chore: removing css loader

* pui-react-tooltip -> tippy
closes #980

* remove extract-text-plugin
This commit is contained in:
Tom Moor
2019-07-09 21:17:25 -07:00
committed by GitHub
parent 7db0be0a6a
commit 3d805d5fe7
17 changed files with 292 additions and 1107 deletions

View File

@@ -1,10 +1,9 @@
/* eslint-disable */
var path = require('path');
var webpack = require('webpack');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var UglifyJsPlugin = require('uglifyjs-webpack-plugin');
var ManifestPlugin = require('webpack-manifest-plugin');
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const ManifestPlugin = require('webpack-manifest-plugin');
commonWebpackConfig = require('./webpack.config');
@@ -25,7 +24,6 @@ productionWebpackConfig.plugins = [
new HtmlWebpackPlugin({
template: 'server/static/index.html',
}),
new ExtractTextPlugin({ filename: 'styles.[hash].css' }),
new UglifyJsPlugin({
sourceMap: true,
uglifyOptions: {