Webpack
The build system for Lore
The build system for Lore
Lore uses Webpack for the build system.
If you're new to webpack, you may find this video series by Kent Dodds helpful for getting up to speed quickly. You can also check out the Official Tutorial on the webpack website.
The config file for webpack is located at the root of the project and called webpack.config.js
. It uses a library called webpack-config-utils, created by Kent Dodds, in order to allow multiple environment configurations to live within the same config file, such as different configurations for development and production.
The config file includes defaults intended to cover the majority of application development concerns, which includes:
It's entirely possible you may never need to modify the config file. If you do, you can learn about the configuration options in the official webpack documentation.