We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64bc50f commit 62c7f48Copy full SHA for 62c7f48
webpack.config.js
@@ -1,6 +1,5 @@
1
const path = require('path');
2
const webpack = require('webpack');
3
-const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
4
const { options: postgraphileOptions } = require('./src/postgraphileOptions.js');
5
6
module.exports = {
@@ -43,15 +42,4 @@ module.exports = {
43
42
node: {
44
__dirname: false, // just output `__dirname`
45
},
46
- optimization: {
47
- minimizer: [
48
- new UglifyJsPlugin({
49
- uglifyOptions: {
50
- // Without this, you may get errors such as
51
- // `Error: GraphQL conflict for 'e' detected! Multiple versions of graphql exist in your node_modules?`
52
- mangle: false,
53
- },
54
- }),
55
- ],
56
57
};
0 commit comments