From 98640f22bd8eb032f912673194720c7643d97ba8 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Wed, 31 Oct 2018 21:59:31 +1100 Subject: [PATCH] Trying to resolve memory leak. --- private/app/App.js | 4 ++-- private/webpack/WebpackCompiler.js | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/private/app/App.js b/private/app/App.js index 5d68bcf..51f33ac 100644 --- a/private/app/App.js +++ b/private/app/App.js @@ -36,11 +36,11 @@ class App { this.database = new DatabaseConnection(this); this.server = new Server(this); this.email = new Email(this); - this.store = new CacheStore(this); + //this.store = new CacheStore(this); } getConfig() { return this.config; } - getCacheStore() {return this.store;} + //getCacheStore() {return this.store;} getDiscord() { return this.discord; } getDatabase() { return this.database; } getPalaise() { return this.palaise; } diff --git a/private/webpack/WebpackCompiler.js b/private/webpack/WebpackCompiler.js index b83faa4..c28022e 100644 --- a/private/webpack/WebpackCompiler.js +++ b/private/webpack/WebpackCompiler.js @@ -112,6 +112,7 @@ module.exports = (isDev) => { { test: /\.scss$|\.css$/i, + exclude: /node_modules/, use: isDev ? ( [ "style-loader", "css-loader", 'sass-loader' ] ) : ( @@ -121,6 +122,7 @@ module.exports = (isDev) => { { test: /\.svg$|\.webm$|\.mp4$/i, + exclude: /node_modules/, use: [{ loader: "file-loader", options: { name: "[path][name].[ext]", context: 'public' } @@ -129,6 +131,7 @@ module.exports = (isDev) => { { test: /\.jpe?g$|\.gif$|\.png$/i, + exclude: /node_modules/, use: [{ loader: "responsive-loader", options: {