0
0

vite/vue Top-level await

2024-01-28
2024-10-11
文章摘要
|

npm安装vite-plugin-top-level-await插件

npm install vite-plugin-top-level-await -D

配置vite.config.js文件

导入

import topLevelAwait from 'vite-plugin-top-level-await';

在plugins中添加topLevelAwait方法

plugins: [
  topLevelAwait({
    promiseExportName: '__tla',
    promiseImportName: i => `__tla_${i}`
  })
]

支持与分享

如果这篇文章对你有帮助,欢迎分享给更多人或者给予支持!