Frontend:

- Remove we_alloce
- Replace webpack by rspack
This commit is contained in:
Greg Burri 2024-11-06 17:48:51 +01:00
parent 1f03c01d1d
commit ebdcb6a90a
10 changed files with 60 additions and 100 deletions

22
frontend/rspack.config.js Normal file
View file

@ -0,0 +1,22 @@
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const webpack = require('webpack');
const WasmPackPlugin = require("@wasm-tool/wasm-pack-plugin");
module.exports = {
entry: './index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
},
plugins: [
new HtmlWebpackPlugin(),
new WasmPackPlugin({
crateDirectory: path.resolve(__dirname, ".")
}),
],
mode: 'development',
experiments: {
asyncWebAssembly: true
}
};