summaryrefslogtreecommitdiff
path: root/webpackBaseConfig.js
diff options
context:
space:
mode:
authorSheogorath2018-04-16 21:08:24 +0200
committerSheogorath2018-04-16 21:08:34 +0200
commitc4dba48f7947701865188db51fa96041f6923563 (patch)
tree9d168f42dd67aae1cf352a870a7605f8f9fca5ba /webpackBaseConfig.js
parent8a3cec73c140bd07b5e9e8631eec079ed63dd2a6 (diff)
Fix possible file limit errors
As we currently may need higher nofile limits than usual/default on various systems this commit should probide a fix for that an allow to build HackMD without highering these limits and increase security. Inspiration was found in a copy-webpack-plugin-issue[1] and found by @thegcat[2]. Thanks for that! Signed-off-by: Sheogorath <sheogorath@shivering-isles.com> [1]: https://github.com/webpack-contrib/copy-webpack-plugin/issues/59#issuecomment-228563990 [2]: https://github.com/thegcat
Diffstat (limited to '')
-rw-r--r--webpackBaseConfig.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/webpackBaseConfig.js b/webpackBaseConfig.js
index e8630841..793308ea 100644
--- a/webpackBaseConfig.js
+++ b/webpackBaseConfig.js
@@ -4,6 +4,11 @@ var ExtractTextPlugin = require('extract-text-webpack-plugin')
var HtmlWebpackPlugin = require('html-webpack-plugin')
var CopyWebpackPlugin = require('copy-webpack-plugin')
+// Fix possible nofile-issues
+var fs = require('fs')
+var gracefulFs = require('graceful-fs')
+gracefulFs.gracefulify(fs)
+
module.exports = {
plugins: [
new webpack.ProvidePlugin({