你好,云引擎支持 Vite 项目。如需部署 Vite 项目,需要您先在本地项目中执行一次 npm install,使得 package-lock.json 文件被创建。除此之外,还需按照文档中的说明1在项目中创建 static.jsonleanengine.yaml 并分别写入以下内容:

static.json

{
  "public": "dist",
  "rewrites": [{ "source": "**", "destination": "/index.html" }]
}

leanengine.yaml

build: npm run build

完成上述操作后,项目应该就能顺利部署了。如果还是遇到问题,可以在这里贴一下您遇到的报错信息,我们来尝试调查下原因。