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 eeda405 commit 31c7198Copy full SHA for 31c7198
package.json
@@ -7,8 +7,7 @@
7
"build": "webpack",
8
"dev": "nodemon ./server.js localhost 80",
9
"test": "echo \"Error: no test specified\" && exit 1",
10
- "start": "node server.js",
11
- "postinstall": "node fix.js"
+ "start": "node server.js"
12
},
13
"repository": {
14
"type": "git",
webpack.config.js
@@ -5,7 +5,7 @@ module.exports = {
5
entry: './server.js',
6
mode: 'production',
target: 'node',
- //plugins: [ new webpack.IgnorePlugin(/^pg-native$/)],
+ plugins: [ new webpack.IgnorePlugin(/^pg-native$/)],
output: {
path: path.resolve(__dirname, '.'),
filename: 'server.bundle.js'
0 commit comments