libcurl.js/client/webpack.config.js
2024-10-03 07:59:35 -04:00

17 lines
No EOL
259 B
JavaScript

module.exports = {
name: "tls-shim",
entry: "./tls/index.mjs",
output: {
filename: "tls-shim.js",
library: {
name: "tls_shim",
type: "var"
}
},
mode: "development",
resolve: {
fallback: {
crypto: false
}
}
}