8e131922e7
Continuing our theme of treating all languages equally, move wrappers/javascript to javascrpit. Automerge libraries for new languages should be built at this top level if possible.
37 lines
736 B
Markdown
37 lines
736 B
Markdown
# Webpack + Automerge
|
|
|
|
|
|
Getting WASM working in webpack 5 is very easy. You just need to enable the
|
|
`asyncWebAssembly`
|
|
[experiment](https://webpack.js.org/configuration/experiments/). For example:
|
|
|
|
|
|
```javascript
|
|
const path = require('path');
|
|
|
|
const clientConfig = {
|
|
experiments: { asyncWebAssembly: true },
|
|
target: 'web',
|
|
entry: './src/index.js',
|
|
output: {
|
|
filename: 'main.js',
|
|
path: path.resolve(__dirname, 'public'),
|
|
},
|
|
mode: "development", // or production
|
|
performance: { // we dont want the wasm blob to generate warnings
|
|
hints: false,
|
|
maxEntrypointSize: 512000,
|
|
maxAssetSize: 512000
|
|
}
|
|
};
|
|
|
|
module.exports = clientConfig
|
|
```
|
|
|
|
## Running the example
|
|
|
|
|
|
```bash
|
|
yarn install
|
|
yarn start
|
|
```
|