Fix production builds so CSS side-effect dependencies of nested dynamic imports are preloaded correctly. In a chain such as `import('a').then(() => import('b'))`, where both imported modules have stylesheet dependencies, the built application must load and apply the stylesheets for both the outer and inner modules. This must work through normal Vite build and preview behavior without regressing existing dynamic-import dependency preloading. Development mode is already unaffected.