FFmpeg to WASM build setup + Vue app.

This commit is contained in:
Alf
2020-09-23 19:06:40 -07:00
commit 711903032c
20 changed files with 12826 additions and 0 deletions

13
www/webpack.config.js Normal file
View File

@@ -0,0 +1,13 @@
const WasmPackPlugin = require("@wasm-tool/wasm-pack-plugin");
module.exports = {
plugins: [
new WasmPackPlugin({
crateDirectory: path.resolve(__dirname, "crate"),
args: "--log-level warn",
extraArgs: "--no-typescript",
}),
]
};