We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc03856 commit df066e2Copy full SHA for df066e2
webpack.config.js
@@ -73,6 +73,8 @@ module.exports = {
73
new webpack.IgnorePlugin(/^child-killer$/),
74
// Dev-only require format, used in various adbkit modules
75
new webpack.IgnorePlugin(/^\.\/src\/(adb|logcat|monkey)$/, /adbkit/),
76
+ // GraphQL playground - required but never used in production bundles
77
+ new webpack.NormalModuleReplacementPlugin(/^\.\/renderGraphiQL$/, 'node-noop'),
78
// Copy Mockttp's schema (read with readFile) into the output directory
79
new CopyWebpackPlugin([
80
{ from: path.join('node_modules', 'mockttp', 'dist', 'standalone', 'schema.gql') },
0 commit comments