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 e1ed462 commit 8074391Copy full SHA for 8074391
1 file changed
webpack.config.js
@@ -27,6 +27,12 @@ module.exports = {
27
}),
28
new webpack.NormalModuleReplacementPlugin(/pg\/lib\/native\/index\.js$/, '../client.js'),
29
],
30
+
31
+ // Something to fix something in postgraphile:
32
+ new webpack.NormalModuleReplacementPlugin(
33
+ /postgraphile\/build\/postgraphile\/http\/subscriptions\.js$/,
34
+ `${__dirname}/src/postgraphile-http-subscriptions.js`
35
+ ),
36
37
// Just in case you install express:
38
new webpack.NormalModuleReplacementPlugin(
0 commit comments