Trying to resolve memory leak.
This commit is contained in:
@ -36,11 +36,11 @@ class App {
|
|||||||
this.database = new DatabaseConnection(this);
|
this.database = new DatabaseConnection(this);
|
||||||
this.server = new Server(this);
|
this.server = new Server(this);
|
||||||
this.email = new Email(this);
|
this.email = new Email(this);
|
||||||
this.store = new CacheStore(this);
|
//this.store = new CacheStore(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
getConfig() { return this.config; }
|
getConfig() { return this.config; }
|
||||||
getCacheStore() {return this.store;}
|
//getCacheStore() {return this.store;}
|
||||||
getDiscord() { return this.discord; }
|
getDiscord() { return this.discord; }
|
||||||
getDatabase() { return this.database; }
|
getDatabase() { return this.database; }
|
||||||
getPalaise() { return this.palaise; }
|
getPalaise() { return this.palaise; }
|
||||||
|
@ -112,6 +112,7 @@ module.exports = (isDev) => {
|
|||||||
|
|
||||||
{
|
{
|
||||||
test: /\.scss$|\.css$/i,
|
test: /\.scss$|\.css$/i,
|
||||||
|
exclude: /node_modules/,
|
||||||
use: isDev ? (
|
use: isDev ? (
|
||||||
[ "style-loader", "css-loader", 'sass-loader' ]
|
[ "style-loader", "css-loader", 'sass-loader' ]
|
||||||
) : (
|
) : (
|
||||||
@ -121,6 +122,7 @@ module.exports = (isDev) => {
|
|||||||
|
|
||||||
{
|
{
|
||||||
test: /\.svg$|\.webm$|\.mp4$/i,
|
test: /\.svg$|\.webm$|\.mp4$/i,
|
||||||
|
exclude: /node_modules/,
|
||||||
use: [{
|
use: [{
|
||||||
loader: "file-loader",
|
loader: "file-loader",
|
||||||
options: { name: "[path][name].[ext]", context: 'public' }
|
options: { name: "[path][name].[ext]", context: 'public' }
|
||||||
@ -129,6 +131,7 @@ module.exports = (isDev) => {
|
|||||||
|
|
||||||
{
|
{
|
||||||
test: /\.jpe?g$|\.gif$|\.png$/i,
|
test: /\.jpe?g$|\.gif$|\.png$/i,
|
||||||
|
exclude: /node_modules/,
|
||||||
use: [{
|
use: [{
|
||||||
loader: "responsive-loader",
|
loader: "responsive-loader",
|
||||||
options: {
|
options: {
|
||||||
|
Reference in New Issue
Block a user