Webpack
The build system for Lore
The build system for Lore
All images in assets/images
are copied into the /assets/images
directory in the dist
folder.
This means any images you add to your project will publically available in production via a route like https://app.example.com/assets/images
This section of the Webpack config that controls this behavior is shown below:
ifProduction(new CopyWebpackPlugin([{
from: 'assets/images',
to: 'assets/images'
}])),