1、下载插件
npm install vite-plugin-top-level-await -D
2、vite.config.js配置
import topLevelAwait from 'vite-plugin-top-level-await';
plugins: [
topLevelAwait({
// The export name of top-level await promise for each chunk module
promiseExportName: '__tla',
// The function to generate import names of top-level await promise in each chunk module
promiseImportName: i => `__tla_${i}`
})
],