working reclaim tls shim

This commit is contained in:
ading2210 2024-10-03 07:59:35 -04:00
parent bcda300153
commit 0cab209e9d
8 changed files with 1289 additions and 9 deletions

17
client/webpack.config.js Normal file
View file

@ -0,0 +1,17 @@
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
}
}
}