swc/crates/wasm/example/webpack.config.js
2021-11-09 20:42:49 +09:00

10 lines
183 B
JavaScript

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