2019-05-23 02:11:16 +08:00
|
|
|
module.exports = {
|
|
|
|
optimization: {
|
|
|
|
chunkIds: "deterministic" // To keep filename consistent between different modes (for example building only)
|
2019-06-05 19:25:15 +08:00
|
|
|
},
|
|
|
|
experiments: {
|
|
|
|
topLevelAwait: true
|
2019-05-23 02:11:16 +08:00
|
|
|
}
|
|
|
|
};
|