前端vite打包,css 打包文件问题

打包生成
index.css
index1.css
index2.css
index4.css

<!DOCTYPE html><html><head>
    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge,chrome=1">
    <meta name="viewport" content="width=device-width">
    <title>鹿班</title>
    <script type="module" crossorigin src="/js/index.js"></script>
    <link rel="modulepreload" href="/js/vendor.js">
    <link rel="stylesheet" href="/css/index4.css">
  </head>

  <body>
    <div id="ice-container"></div>
  

</body></html>

打包后html css引入入口都是生生的最后一个css (index4.css)

有没有办法默认是index.css

build.cssCodeSplit 为 false 来禁用 CSS 代码分割。