-
Vanilla's Frontend Build System
Vanilla’s frontend scripts use a single global build process. This is used for all internal Javscript, both in core and addons. What does it do? The included build process uses Typescript and Webpack to bundle typescript files to into javascript bundles. Every addon in your current vanilla project containing entries will…
-
Routing in React
Once a PageDispatchController has been configured and the server is serving a route, the frontend needs to be configured to mount something there. From here the frontend router will attempt to handle as much routing as possible, until it it navigates to a route outside of its current section. Generally this is caused by a…