What's the recommended naming strategy for split chunks in a webpack configuration?
The recommended naming strategy for split chunks is to let webpack generate hashed names automatically. This approach ensures proper cache invalidation when the content changes. When you configure webpack's output with something like `filename: '[name].[contenthash].js'`, webpack will generate unique filenames based on the content hash. This means returning users only need to download chunks that have actually changed since their last visit, while unchanged chunks can be served from browser cache, optimizing both initial and subsequent load times.