Server & Client Bundles

Webpack outputs both a Server and Client bundle for our Frontend code.

For security reasons, the server bundle exits outside of the public directory, which means that the file is NOT publicly accessible.

Webpack is also configured not to bundle any libraries that exist in the 'node_modules' folder into the server bundle as they are not needed.

Last updated