serverless-bundle
serverless-bundle copied to clipboard
Can't import async module
Can't import async module it will generate this error
Module parse failed: The top-level-await experiment is not enabled (set experiments.topLevelAwait: true to enabled it)
In this case, we have to add to webpack.config.js
experiments: {
topLevelAwait: true,
}