From 6e5a2292a63d5155274c81d46b004c10e4edf53b Mon Sep 17 00:00:00 2001 From: picklesrus Date: Wed, 4 Sep 2019 10:51:13 -0400 Subject: [PATCH] Requiring the Page component (even though we don't use it) allows www to build without running out of memory. --- src/views/join/join.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/join/join.jsx b/src/views/join/join.jsx index 7d14be8b0..ebb4019fc 100644 --- a/src/views/join/join.jsx +++ b/src/views/join/join.jsx @@ -2,6 +2,7 @@ const React = require('react'); const render = require('../../lib/render.jsx'); const JoinModal = require('../../components/modal/join/modal.jsx'); const ErrorBoundary = require('../../components/errorboundary/errorboundary.jsx'); +// Require this even though we don't use it because, without it, webpack runs out of memory... const Page = require('../../components/page/www/page.jsx'); // eslint-disable-line no-unused-vars const openModal = true;