Requiring the Page component (even though we don't use it) allows www to build without running out of memory.

This commit is contained in:
picklesrus 2019-09-04 10:51:13 -04:00
parent 84be22f335
commit 6e5a2292a6

View file

@ -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;