I am trying to understand the difference between assets and statics directories and when I should be using one or the other, especially in handling images.From the directory structure docs they seem to describe as
- assets/ # dynamic assets (processed by webpack)
- statics/ # pure static assets (directly copied)
Would really appreciate a simpler detailed explanation.