-
Notifications
You must be signed in to change notification settings - Fork 88
Closed
Description
-
currently webpack uses a hardcoded entry point in
config/webpack.config.js -
this is fine atm because we are currently only using React for the event editor
-
eventually we will begin to convert other admin pages (as well as frontend elements) to use React + AGQL
-
before this happens we will need to know how we are going to handle routing
-
ideally, we will:
-
dynamically route all requests through a single webpack entry to the appropriate UI
-
lazy load components accordingly
-
dynamically fetch data that has been preloaded into the DOM (likely nothing any more special that what we are doing already is needed here, but some logic could potentially be abstracted and shared better)
-