1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-06-26 11:11:34 +00:00
Files
crates
examples
console_log
dom
hello_world
math
performance
src
.gitignore
Cargo.toml
README.md
build.sh
index.html
index.js
package.json
webpack.config.js
smorgasboard
wasm-in-wasm
README.md
src
tests
.appveyor.yml
.gitignore
.travis.yml
CONTRIBUTING.md
Cargo.toml
DESIGN.md
LICENSE-APACHE
LICENSE-MIT
README.md
package.json
wasm-bindgen/examples/performance/webpack.config.js

11 lines
184 B
JavaScript
Raw Normal View History

const path = require('path');
module.exports = {
entry: "./index.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "index.js",
},
mode: "development"
};