webpack/examples/top-level-await/webpack.config.js

10 lines
216 B
JavaScript
Raw Normal View History

module.exports = {
optimization: {
chunkIds: "deterministic" // To keep filename consistent between different modes (for example building only)
},
experiments: {
2019-06-05 20:26:08 +08:00
topLevelAwait: true,
importAwait: true
}
};