swc/crates/wasm/example/webpack.config.js

10 lines
183 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"
};