2019-05-24 20:24:44 +08:00
|
|
|
module.exports = {
|
|
|
|
// mode: "development || "production",
|
|
|
|
output: {
|
|
|
|
publicPath: "dist/"
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.wat$/,
|
|
|
|
use: "wast-loader",
|
2019-07-15 21:03:29 +08:00
|
|
|
type: "webassembly/async"
|
2019-05-24 20:24:44 +08:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
optimization: {
|
|
|
|
chunkIds: "deterministic" // To keep filename consistent between different modes (for example building only)
|
2019-06-05 19:25:15 +08:00
|
|
|
},
|
|
|
|
experiments: {
|
2019-06-05 20:26:08 +08:00
|
|
|
asyncWebAssembly: true,
|
2020-08-04 20:15:08 +08:00
|
|
|
topLevelAwait: true
|
2019-05-24 20:24:44 +08:00
|
|
|
}
|
|
|
|
};
|