mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
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:
parent
84be22f335
commit
6e5a2292a6
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue