6746514317
Resolved dependency issues in testnet-faucet Removed the outdated react example Updated js example dependencies Using sandbox in js example Feature locking imports Running wasm client in testnet mode by default Allow using `None` BandwidthController in testnet mode Reverted endianness change and left it for others to deal with Fixed up websocket js-example Changed endianness of aes counter
16 lines
365 B
JavaScript
16 lines
365 B
JavaScript
const CopyWebpackPlugin = require("copy-webpack-plugin");
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
entry: "./bootstrap.js",
|
|
output: {
|
|
path: path.resolve(__dirname, "dist"),
|
|
filename: "bootstrap.js",
|
|
},
|
|
mode: "development",
|
|
plugins: [
|
|
new CopyWebpackPlugin({patterns: ['index.html']})
|
|
],
|
|
experiments: { asyncWebAssembly: true }
|
|
};
|